
/* Text Formatter specific styles */
.formatter-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.format-button {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.format-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#inputText, #outputText {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

#inputText:focus, #outputText:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.copy-animation {
    animation: copySuccess 0.5s ease;
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.text-formatter-container {
    max-width: 1200px;
    margin: 0 auto;
}

.format-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.format-buttons .btn {
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.format-buttons .btn:hover {
    transform: translateX(5px);
}

.text-input, .text-output {
    font-family: 'Courier New', monospace;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.text-input:focus, .text-output:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.action-buttons {
    margin-top: 1rem;
}

.action-buttons .btn {
    border-radius: 8px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .format-buttons {
        margin-bottom: 2rem;
    }
    
    .action-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}
