<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --- Global &amp; Wrapper --- */
.ak-app-menu-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f8f9fa; /* Ná»n sĂ¡ng */
    padding: 25px 30px 30px 30px;
    border-radius: 15px; /* Bo gĂ³c nhiá»u hÆ¡n */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); /* BĂ³ng Ä‘á»• rĂµ hÆ¡n */
    border: 1px solid #e9ecef;
    overflow: hidden;
}

/* --- Header --- */
.ak-app-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px; /* TÄƒng khoáº£ng cĂ¡ch */
    flex-wrap: wrap;
    gap: 20px;
}

/* --- Search Box --- */
.ak-app-menu-search {
    flex-grow: 1;
    min-width: 280px;
}

#ak-app-menu-search-input {
    width: 100%;
    padding: 14px 25px; /* TÄƒng padding */
    border: 1px solid #ced4da;
    border-radius: 30px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    background-color: #fff;
    color: #495057;
}

#ak-app-menu-search-input:focus {
    border-color: #c40000;
    box-shadow: 0 0 0 4px rgba(196, 0, 0, 0.1);
}

/* --- Login Button --- */
.ak-app-menu-login-button {
    display: inline-block;
    background: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
    color: #ffffff !important;
    padding: 14px 35px; /* TÄƒng padding */
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 0, 0, 0.25);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.ak-app-menu-login-button:hover,
.ak-app-menu-login-button:focus {
    background: linear-gradient(135deg, #b31217 0%, #e52d27 100%);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02); /* ThĂªm scale */
    box-shadow: 0 7px 25px rgba(196, 0, 0, 0.4); /* BĂ³ng Ä‘á»• máº¡nh hÆ¡n */
}

/* --- Group Styling --- */
.ak-app-menu-group {
    margin-bottom: 25px;
}

.ak-app-menu-group-title {
    font-size: 1.6em; /* To hÆ¡n chĂºt */
    color: #212529; /* Sáº«m hÆ¡n */
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6; /* Viá»n máº£nh hÆ¡n */
    font-weight: 700; /* Äáº­m hÆ¡n */
    position: relative;
}

/* ThĂªm hiá»‡u á»©ng gáº¡ch chĂ¢n cho tiĂªu Ä‘á» nhĂ³m */
.ak-app-menu-group-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; /* Náº±m trĂªn viá»n */
    width: 80px; /* Äá»™ dĂ&nbsp;i gáº¡ch chĂ¢n */
    height: 3px; /* Äá»™ dĂ&nbsp;y */
    background-color: #c40000; /* MĂ&nbsp;u Ä‘á» chá»§ Ä‘áº¡o */
    border-radius: 2px;
}

.ak-app-menu-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent); /* Gradient */
    margin: 50px 0; /* TÄƒng khoáº£ng cĂ¡ch */
}

/* --- Grid Container --- */
.ak-app-menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* Rá»™ng hÆ¡n chĂºt */
    gap: 30px;
}

/* --- Menu Item Styling (BĂ³ng Báº©y) --- */
.ak-app-menu-item-display {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px; /* Bo gĂ³c nhiá»u hÆ¡n */
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); /* BĂ³ng Ä‘á»• rĂµ hÆ¡n */
    cursor: pointer;
}

.ak-app-menu-item-display:hover {
    transform: translateY(-12px); /* NĂ¢ng cao hÆ¡n */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15); /* BĂ³ng Ä‘á»• máº¡nh hÆ¡n */
}

.ak-app-menu-item-display a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    text-decoration: none;
    color: #343a40;
    font-weight: 600;
    font-size: 15px;
    height: 100%;
    box-sizing: border-box;
    transition: color 0.3s ease;
}

.ak-app-menu-item-display a:hover {
    color: #c40000;
}

.ak-app-menu-item-display .ak-app-menu-image-wrapper {
    width: 75px; /* To hÆ¡n */
    height: 75px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f1f3f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid #fff; /* Viá»n tráº¯ng dĂ&nbsp;y hÆ¡n */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* BĂ³ng Ä‘á»• cho áº£nh */
}

.ak-app-menu-item-display:hover .ak-app-menu-image-wrapper {
    transform: scale(1.15); /* PhĂ³ng to nhiá»u hÆ¡n */
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.ak-app-menu-item-display img {
    max-width: 85%; /* Äiá»u chá»‰nh Ä‘á»ƒ vá»«a viá»n */
    max-height: 85%;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.ak-app-menu-item-display .ak-app-menu-item-name {
    display: block;
    line-height: 1.45;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px; /* RĂµ hÆ¡n */
}

/* --- Notices --- */
.ak-app-menu-notice,
.ak-app-menu-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    color: #6c757d;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
    .ak-app-menu-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
     .ak-app-menu-group-title { font-size: 1.4em; }
}

@media (max-width: 480px) {
     .ak-app-menu-header { flex-direction: column; align-items: stretch; }
    .ak-app-menu-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
     .ak-app-menu-group-title { font-size: 1.3em; }
}</pre></body></html>