/* ============================================
   LOGO STYLES
   ============================================ */

.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.logo-text:hover {
    transform: scale(1.05);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-text:hover .logo-icon {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.logo-text-label {
    color: white;
    font-weight: 700;
    font-size: 22px;
    white-space: nowrap;
}

/* Dashboard navbar logo */
.navbar-custom .logo-text {
    color: #667eea;
}

.navbar-custom .logo-text-label {
    color: #667eea;
}

/* Login page logo */
.card-header .logo-text {
    color: white;
}

.card-header .logo-text-label {
    color: white;
}
