.avatar-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-circle img {
    width: 100%;
    object-fit: cover;
}

.main-title {
    font-size: clamp(1.5rem, 7vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.secondary-lab {
    font-size: clamp(0.7rem, 3.5vw, 0.95rem);
    border-left: 3px solid #dee2e6;
    padding-left: 0.75rem;
}

.divider-vertical {
    width: 1px;
    height: 1.2rem;
    background-color: #dee2e6;
}

.hover-link:hover {
    color: #0d6efd !important;
}

.full-button-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.full-button-strip > * {
    flex: 1;
    text-align: center;
    min-width: max-content;
}

.full-button-strip .divider-vertical {
    flex: 0 0 1px;
    min-width: 1px;
}

.mobile-menu-container {
    display: none;
    border: 1.5px solid #111;
}

.dropdown-menu-custom .dropdown-item {
    padding: 0.5rem 1rem;
}

.dropdown-toggle-custom {
    width: 100%;
    border-radius: 0;
    border: 1px solid #dee2e6;
    background: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
}

.dropdown-toggle-custom:hover,
.dropdown-toggle-custom:focus {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

@media (max-width: 770px) {
    .full-button-strip {
        display: none;
    }
    .mobile-menu-container {
        display: block;
    }
}

@media (max-width: 620px) {
    .full-text {
        display: none;
    }
    .short-text {
        display: inline;
    }
}

@media (min-width: 621px) {
    .full-text {
        display: inline;
    }
    .short-text {
        display: none;
    }
}

@media (max-width: 500px) {
    .d-flex.flex-wrap.align-items-center {
        flex-direction: column !important;
        text-align: center;
    }
    .avatar-circle {
        margin-bottom: 0.5rem;
    }
    .brand-text-wrapper {
        text-align: left;
    }
    .secondary-lab {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
}

.brand-text-wrapper {
    flex: 1;
}

hr {
    margin: 1.5rem 0;
}

.hover-link {
    transition: color 0.3s ease;
}

.hover-link:hover {
    color: var(--bs-primary) !important;
}

.hover-link-red:hover {
    color: var(--bs-danger) !important;
}

.hover-link-sec:hover {
    color: var(--bs-secondary) !important;
}

.hover-link-green:hover {
    color: var(--bs-success) !important;
}

.hover-link-yellow:hover {
    color: var(--bs-warning) !important;
}

.hover-link-blue:hover {
    color: var(--bs-info) !important;
}
