/* Furmark® Custom Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    color: #1e293b;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1e293b;
}

.navbar-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
}

.navbar-tagline {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #3b82f6;
}

.navbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.navbar-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.3);
}

.navbar-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px 0 rgba(59, 130, 246, 0.4);
}

.navbar-btn-secondary {
    background: white;
    color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.navbar-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 6rem 0 3rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 3rem;
}


/* Checkbox Grid Styles */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
    max-width: 100%;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.checkbox-item:hover {
    border-color: #3b82f6;
    background: #f1f5f9;
}

.checkbox-item:has(.form-checkbox:checked) {
    border-color: #3b82f6;
    background: #eff6ff;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #3b82f6;
    cursor: pointer;
}

.checkbox-label {
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    flex: 1;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    resize: vertical;
    min-height: 100px;
}

.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.required {
    color: #ef4444;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Footer Styles */
.footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-link {
        display: none;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Form responsive styles */
    .form-container {
        padding: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    /* Social media responsive styles */
    .social-media-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .social-platform-entry {
        padding: 0.75rem;
    }
    
    .social-platform-entry .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-platform-entry .form-group {
        width: 100%;
    }
    
    .social-platform-entry .btn-danger {
        top: 0.25rem;
        right: 0.25rem;
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .social-platform-entry .btn-danger svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    /* Business relations responsive styles */
    .business-relation-category {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .category-header {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 1rem;
    }
    
    .category-header .btn {
        width: auto;
        justify-content: center;
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .business-relation-entry {
        padding: 0.75rem;
    }
    
    .business-relation-entry .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .business-relation-entry .form-group {
        width: 100%;
    }
    
    .business-relation-entry .btn-danger {
        top: 0.25rem;
        right: 0.25rem;
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .business-relation-entry .btn-danger svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    /* Radio buttons responsive */
    .radio-group {
        gap: 0.75rem;
    }
    
    .radio-item {
        padding: 0.75rem;
    }
    
    /* Ownership details responsive */
    #ownership-details {
        padding: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .form-container {
        padding: 0.5rem;
    }
    
    .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .btn-outline {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.375rem 0.625rem;
        font-size: 0.8rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-section h3 {
        font-size: 1.25rem;
    }
    
    .form-section h4 {
        font-size: 1.1rem;
    }
    
    .business-relation-category {
        padding: 0.75rem;
    }
    
    .social-platform-entry,
    .business-relation-entry {
        padding: 0.5rem;
    }
    
    .radio-item {
        padding: 0.625rem;
    }
    
    #ownership-details {
        padding: 0.75rem;
    }
    
    /* Document attachment responsive */
    .document-attachment {
        padding: 1rem;
    }
    
    .document-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .document-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .document-details h4 {
        font-size: 1rem;
    }
    
    .document-details p {
        font-size: 0.85rem;
    }
    
    .document-actions {
        gap: 0.75rem;
    }
    
    .upload-section {
        padding-top: 0.75rem;
    }
    
    .upload-label {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   DOCUMENT ATTACHMENT STYLES
   ============================================ */

.document-attachment {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.document-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.document-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #3b82f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.document-details {
    flex: 1;
}

.document-details h4 {
    margin: 0 0 0.5rem 0;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
}

.document-details p {
    margin: 0 0 1rem 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.document-details .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Required document styling */
.required-document {
    border-color: #3b82f6;
    background: #eff6ff;
}

.required-document .document-icon.required {
    background: #3b82f6;
}

.required-badge {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.required-document .document-details h4 {
    color: #1e40af;
    font-weight: 700;
}

.required-document .document-details p {
    color: #1e40af;
    font-weight: 500;
}

/* Document actions styling */
.document-actions {
    /* display: flex; */
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.upload-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.upload-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.upload-label:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}

.file-input {
    display: none;
}

.file-info {
    margin-top: 0.5rem;
    color: #64748b;
    font-size: 0.8rem;
}

.file-info small {
    color: #64748b;
}

/* ============================================
   SOCIAL MEDIA SECTION STYLES
   ============================================ */

.social-media-section {
    margin-top: 2rem;
}

.social-media-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.social-media-header h4 {
    margin: 0;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.social-platform-entry {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-platform-entry:hover {
    border-color: #3b82f6;
    background: #f1f5f9;
}

.btn-danger {
    background: #ef4444;
    border: 2px solid #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Remove button as X in top right corner */
.social-platform-entry .btn-danger {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    z-index: 10;
    color: #64748b;
    transition: color 0.2s ease;
}

.social-platform-entry .btn-danger:hover {
    background: transparent;
    border: none;
    color: #ef4444;
}

.social-platform-entry .btn-danger svg {
    width: 1rem;
    height: 1rem;
}

#social-platforms-container {
    min-height: 2rem;
}

#social-platforms-container:empty::before {
    content: "No social media platforms added yet. Click 'Add Platform' to get started.";
    color: #64748b;
    font-style: italic;
    display: block;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
}

/* ============================================
   BUSINESS OWNERSHIP SECTION STYLES
   ============================================ */

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.radio-item:hover {
    border-color: #3b82f6;
    background: #f1f5f9;
}

.radio-item:has(.form-radio:checked) {
    border-color: #3b82f6;
    background: #eff6ff;
}

.form-radio {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #3b82f6;
    cursor: pointer;
}

.radio-label {
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    flex: 1;
}

#ownership-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

#ownership-details h4 {
    margin: 0 0 1rem 0;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   BUSINESS RELATIONS SECTION STYLES
   ============================================ */

.business-relation-category {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-header h4 {
    margin: 0;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
}

.business-relation-entry {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.business-relation-entry:hover {
    border-color: #3b82f6;
    background: #f1f5f9;
}

.business-relation-entry .btn-danger {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    z-index: 10;
    color: #64748b;
    transition: color 0.2s ease;
}

.business-relation-entry .btn-danger:hover {
    background: transparent;
    border: none;
    color: #ef4444;
}

.business-relation-entry .btn-danger svg {
    width: 1rem;
    height: 1rem;
}

/* Empty state for business relations */
#auction-houses-container:empty::before,
#brokers-container:empty::before,
#skin-dealers-container:empty::before,
#manufacturers-container:empty::before,
#dresser-dyers-container:empty::before {
    content: "No entries added yet. Click 'Add' button to get started.";
    color: #64748b;
    font-style: italic;
    display: block;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
}

/* Language Switcher Styles */
.language-switcher {
    margin-right: 1rem;
}

.language-form {
    display: inline-block;
}

.language-select {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.language-select:hover {
    border-color: #3b82f6;
    background-color: #f8fafc;
}

.language-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .navbar-actions {
        flex-wrap: wrap;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}