.academy-header-wrapper {
    height: clamp(80px, 6vw, 100px);
    z-index: 99;
}

.logo-teacher-header {
    max-width: 130%;
    max-height: 110%;
}

.logo-teacher .dropdown-menu {
    left: 0;
}

.action-btns .dropdown-menu {
    right: 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
}

.dropdown-menu.arrow-menu {
    width: 250px;
}

.dropdown-menu.profile-menu {
    width: 150px;
}

.dropdown-item {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    margin-right: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    color: #333;
}

.btn-login {
    background: linear-gradient(90deg, #6b00e0, #4ca5ff);
    border: none;
}

.btn-login:hover {
    opacity: .8;
    color: #fff;
}

/*.btn-signup {*/
/*    background: linear-gradient(90deg, #28a745, #ffca3a);*/
/*    border: none;*/
/*}*/

/*.btn-signup:hover {*/
/*    opacity: .8;*/
/*    color: #fff;*/
/*}*/

.action-btns {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 25px;
}

.btn-my-course {
    background: linear-gradient(90deg, #6b00e0, #4ca5ff);
    transition: opacity 0.3s, color 0.3s;
}

.btn-my-course:hover {
    opacity: 0.8;
    color: white;
}

.icon-cart-container {
    text-align: start;
    cursor: pointer;
}

.icon-cart {
    color: #333;
    font-size: 22px;
}

.cart__count {
    top: -10px;
    right: -10px;
    background-color: #CA3F00;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    line-height: 1;
    border: 1px solid #fff;
}

.cart__content {
    display: none;
    top: 30px;
    right: 0;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.cart__content--header {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.cart__content--title {
    font-size: 16px;
    font-weight: bold;
}

.cart__content--desc {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
}

.cart__content--list {
    max-height: 200px;
    overflow-y: auto;
}

.cart__content--item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.cart__content--item:last-child {
    border-bottom: none;
}

.cart__content--img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.cart__content--img img {
    object-fit: contain;
    border-radius: 5px;
}

.cart__content--info {
    flex-grow: 1;
}

.cart__content--name {
    font-size: 14px;
    font-weight: bold;
}

.cart__content--price {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
}

.cart__content--footer {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.cart__content--btn {
    background: linear-gradient(90deg, #6b00e0, #4ca5ff);
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s, color 0.3s;
}

.cart__content--btn:hover {
    opacity: 0.8;
    color: #fff;
}

.icon-cart-container:hover .cart__content {
    display: block;
}

.cart__content:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 0;
    width: 100%;
    height: 0;
    border: 10px solid transparent;
}

.notification {
    color: #333;
    display: flex;
    transition: color 0.3s;
    border: none;
    background: inherit;
}

.notification i {
    font-size: 22px;
}

.notification:hover {
    color: #ff5e14;
}

.profile-btn {
    color: #333;
    display: flex;
    transition: color 0.3s;
    border: none;
    background: inherit;
}

.profile-btn i {
    font-size: 22px;
}

.profile-btn:hover {
    color: #ff5e14;
}

@media (max-width: 576px) {
    .action-btns {
        gap: 15px;
    }

    .notification, .profile-btn {
        font-size: 18px;
        margin-right: 5px;
        margin-left: 5px;
    }

    .notification i, .profile-btn i {
        font-size: 18px;
    }

    .profile-btn i {
        display: none;
    }
}
