/* Old Lipy Converter Styles */

.olc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    font-family: Arial, sans-serif;
}

.olc-container h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #2d3748;
    font-weight: 600;
}

/* Grid Layout */
.olc-typing-area {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

/* Each Box */
.olc-box {
    flex: 1 1 48%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

/* Labels */
.olc-box label {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #374151;
}

/* Textareas */
.olc-box textarea {
    height: 220px;
    padding: 16px;
    font-size: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    background: #f9fafb;
    transition: all 0.25s ease;
}

/* Focus effect */
.olc-box textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
    background: #ffffff;
}

/* Font Families */
#gurmukhiBox {
    font-family: 'Noto Sans Gurmukhi', 'Arial Unicode MS', sans-serif;
}

#customBox {
    font-family: monospace;
}

#hindiBox {
    font-family: 'Mangal', 'Noto Sans Devanagari', Arial, sans-serif;
}

#oldhindiBox {
    font-family: monospace;
}

/* Responsive */
@media (max-width: 900px) {

    .olc-typing-area {
        flex-direction: column;
    }

    .olc-box {
        flex: 1 1 100%;
    }

    .olc-box textarea {
        height: 180px;
    }
}