/* Sidebar Shortcuts Styling - Dashboard Style */

.sidebar-shortcuts {
    padding: 10px 5px;
    margin-bottom: 10px;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-shortcuts-large .shortcuts-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

/* Shortcut Button Styling */
.shortcut-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 80px;
    border: none;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    color: inherit;
}

.shortcut-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.shortcut-icon-wrapper {
    font-size: 32px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.shortcut-label {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    line-height: 1.2;
    color: #555;
}

/* Dashboard Button */
.shortcut-dashboard {
    color: #27ae60;
}

.shortcut-dashboard .shortcut-icon-wrapper {
    background-color: rgba(39, 174, 96, 0.12);
    color: #27ae60;
}

.shortcut-dashboard:hover {
    background-color: rgba(39, 174, 96, 0.08);
}

.shortcut-dashboard:hover .shortcut-icon-wrapper {
    background-color: rgba(39, 174, 96, 0.2);
}

/* Payments Button */
.shortcut-fees {
    color: #3498db;
}

.shortcut-fees .shortcut-icon-wrapper {
    background-color: rgba(52, 152, 219, 0.12);
    color: #3498db;
}

.shortcut-fees:hover {
    background-color: rgba(52, 152, 219, 0.08);
}

.shortcut-fees:hover .shortcut-icon-wrapper {
    background-color: rgba(52, 152, 219, 0.2);
}

/* Users Button */
.shortcut-users {
    color: #9b59b6;
}

.shortcut-users .shortcut-icon-wrapper {
    background-color: rgba(155, 89, 182, 0.12);
    color: #9b59b6;
}

.shortcut-users:hover {
    background-color: rgba(155, 89, 182, 0.08);
}

.shortcut-users:hover .shortcut-icon-wrapper {
    background-color: rgba(155, 89, 182, 0.2);
}

/* Settings Button */
.shortcut-settings {
    color: #e74c3c;
}

.shortcut-settings .shortcut-icon-wrapper {
    background-color: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
}

.shortcut-settings:hover {
    background-color: rgba(231, 76, 60, 0.08);
}

.shortcut-settings:hover .shortcut-icon-wrapper {
    background-color: rgba(231, 76, 60, 0.2);
}

/* Mini View Styling */
.sidebar-shortcuts-mini {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    align-items: center;
}

.shortcut-btn-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 8px;
}

.shortcut-btn-mini:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(1.08);
}

.shortcut-dashboard-mini {
    color: #27ae60;
}

.shortcut-fees-mini {
    color: #3498db;
}

.shortcut-users-mini {
    color: #9b59b6;
}

.shortcut-settings-mini {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar-shortcuts-large {
        display: none;
    }

    .sidebar-shortcuts-mini {
        display: flex;
    }

    .sidebar-shortcuts {
        padding: 8px 3px;
        margin-bottom: 5px;
    }
}

/* Active state styling */
.shortcut-btn.active,
.shortcut-btn-mini.active {
    font-weight: 700;
    opacity: 1;
}

/* Focus state for accessibility */
.shortcut-btn:focus,
.shortcut-btn-mini:focus {
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: 2px;
}

/* Animation for page load */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shortcut-btn {
    animation: slideInDown 0.4s ease forwards;
}

.shortcut-btn:nth-child(1) { animation-delay: 0.05s; }
.shortcut-btn:nth-child(2) { animation-delay: 0.1s; }
.shortcut-btn:nth-child(3) { animation-delay: 0.15s; }
.shortcut-btn:nth-child(4) { animation-delay: 0.2s; }

