/* फाइल: /tools/case-converter/tool-style.css */
/* यह CSS सिर्फ केस कन्वर्टर टूल के लिए है। */

.tool-container {
    max-width: 800px;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 2rem;
}

.tool-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tool-header h1 {
    font-size: 2.5rem;
    color: var(--heading-color);
}

.text-area {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    font-size: 1rem;
    font-family: monospace;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    resize: vertical;
    margin-bottom: 1.5rem;
}

.text-area:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tool-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background-color: #f8f9fa;
    color: var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.tool-btn:active {
    transform: scale(0.98);
}

.utility-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.utility-buttons .utility {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    flex-grow: 1;
}

.utility-buttons .utility.clear {
    background-color: #6c757d;
    border-color: #6c757d;
}

.stats {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.stats span {
    margin: 0 1rem;
}

/* कंटेंट सेक्शन की स्टाइलिंग */
.content-section {
    padding: 2rem 0;
}

.content-section h2, .content-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.content-section ol, .content-section ul {
    padding-left: 20px;
}