/* --- Lưới Icon Tùy Chỉnh --- */
.aho-icon-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
    padding-bottom: 100px; /* Thêm khoảng trống ở dưới để không bị thanh chức năng che mất */
}

.aho-icon-item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aho-icon-item .icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aho-icon-item:hover .icon-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.aho-icon-item .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aho-icon-item .icon-label {
    font-size: 14px;
    font-weight: 500;
}

/* --- Thanh Chức Năng Cố Định (CSS MỚI) --- */
.aho-fixed-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
}

.aho-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
}

.aho-action-item:hover {
    color: #0073aa;
}

.aho-action-item svg {
    margin-bottom: 4px;
}

.aho-action-item .action-label {
    font-size: 12px;
}