/* GoDELF CSS Logo - Option 4: GO in bright red (#ff4444), DELF in blue (#318ce7) */
.css-logo {
    display: inline-flex;
    gap: 6px;
    background: #318ce7;
    padding: 10px 12px;
    border-radius: 6px;
    align-items: center;
}

.css-logo .logo-letter {
    background: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.css-logo .logo-letter.go {
    color: #ff4444;
}

.css-logo .logo-letter.delf {
    color: #318ce7;
}

/* Sidebar logo colors using nth-child for layouts without class names */
.sidebar-logo {
    text-decoration: none !important;
}

.sidebar-logo:hover {
    text-decoration: none !important;
}

.sidebar-logo .logo-letter {
    text-decoration: none !important;
}

.sidebar-logo:hover .logo-letter {
    text-decoration: none !important;
}

.sidebar-logo .logo-letter:nth-child(1),
.sidebar-logo .logo-letter:nth-child(2) {
    color: #ff4444 !important;
}

.sidebar-logo .logo-letter:nth-child(3),
.sidebar-logo .logo-letter:nth-child(4),
.sidebar-logo .logo-letter:nth-child(5),
.sidebar-logo .logo-letter:nth-child(6) {
    color: #318ce7 !important;
}

/* Mobile header logo */
.mobile-header .logo-letter:nth-child(1),
.mobile-header .logo-letter:nth-child(2) {
    color: #ff4444 !important;
}

.mobile-header .logo-letter:nth-child(3),
.mobile-header .logo-letter:nth-child(4),
.mobile-header .logo-letter:nth-child(5),
.mobile-header .logo-letter:nth-child(6) {
    color: #318ce7 !important;
}

/* Size variations */
.css-logo.logo-sm {
    gap: 4px;
    padding: 6px 8px;
    border-radius: 4px;
}

.css-logo.logo-sm .logo-letter {
    width: 24px;
    height: 24px;
    font-size: 14px;
    border-radius: 3px;
}

.css-logo.logo-md {
    gap: 5px;
    padding: 8px 10px;
    border-radius: 5px;
}

.css-logo.logo-md .logo-letter {
    width: 30px;
    height: 30px;
    font-size: 17px;
    border-radius: 3px;
}

.css-logo.logo-lg {
    gap: 8px;
    padding: 14px 16px;
    border-radius: 8px;
}

.css-logo.logo-lg .logo-letter {
    width: 48px;
    height: 48px;
    font-size: 26px;
    border-radius: 5px;
}
