/* Punjabi Font Converter Styles */
#punjabi-converter {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px 0;
    max-width: 100%;
}

.pfc-container {
    background: #ffffff;
    border: 2px solid #2c5aa0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pfc-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 3px solid #2c5aa0;
    padding-bottom: 15px;
}

.pfc-header h3 {
    color: #2c5aa0;
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
}

.pfc-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.pfc-input-section,
.pfc-output-section {
    margin-bottom: 20px;
}

.pfc-input-section label,
.pfc-output-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.pfc-input-section textarea,
.pfc-output-section textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    resize: vertical;
    transition: border-color 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
}

.pfc-input-section textarea {
    border-color: #3498db;
    background: #f8f9fa;
}

.pfc-output-section textarea {
    border-color: #27ae60;
    background: #f8f9fa;
}

.pfc-input-section textarea:focus,
.pfc-output-section textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.pfc-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pfc-font-selection {
    flex: 1;
    min-width: 200px;
}

.pfc-font-selection label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.pfc-font-selection select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.pfc-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pfc-btn-primary,
.pfc-btn-secondary,
.pfc-btn-success {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pfc-btn-primary {
    background: #2c5aa0;
    color: white;
}

.pfc-btn-primary:hover {
    background: #1e3d6f;
}

.pfc-btn-secondary {
    background: #6c757d;
    color: white;
}

.pfc-btn-secondary:hover {
    background: #545b62;
}

.pfc-btn-success {
    background: #28a745;
    color: white;
}

.pfc-btn-success:hover {
    background: #1e7e34;
}

.pfc-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 13px;
    color: #666;
}

.pfc-info {
    background: #e8f4fd;
    border-left: 4px solid #2196F3;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    margin-top: 15px;
}

.pfc-info strong {
    color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pfc-controls {
        flex-direction: column;
    }
    
    .pfc-font-selection {
        min-width: 100%;
    }
    
    .pfc-actions {
        flex-direction: column;
    }
    
    .pfc-btn-primary,
    .pfc-btn-secondary,
    .pfc-btn-success {
        width: 100%;
        justify-content: center;
    }
    
    .pfc-stats {
        flex-direction: column;
        gap: 5px;
    }
}