/* Mobile Quick Links Design - Based on the new design provided */

/* Main container for mobile quick links */
.mobile-quick-links-container {
    padding: 16px;
    font-family: "Segoe UI", sans-serif;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-quick-links-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333333;
}

/* Main card container */
.mobile-quick-links-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 16px;
    width: 100%;
    max-width: 100%;
}

/* Requests card styling - aligned with tiles */
.mobile-requests-card {
    background-color: #f1e9df;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.mobile-requests-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mobile-requests-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-requests-icon svg {
    width: 100%;
    height: 100%;
    fill: #333333;
}

.mobile-requests-title {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin: 0;
}

/* Request status items */
.mobile-request-status {
    background-color: white;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    margin-top: 6px;
    color: #333333;
}

/* Grid for other quick links - aligned with requests card */
.mobile-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

/* Individual tile styling - increased width and aligned */
.mobile-tile {
    background-color: #f1e9df;
    border-radius: 16px;
    text-align: left;
    padding: 20px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 140px;
    width: 100%;
    max-width: 100%;
}

.mobile-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-tile-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    padding: 4px;
}

.mobile-tile-icon svg {
    width: 20px;
    height: 20px;
    fill: #333333;
}

.mobile-tile-number {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333333;
}

.mobile-tile-label {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Special styling for Pending Payments to include AED */
.mobile-tile-pending-payments .mobile-tile-number::after {
    content: " AED";
    color: #000000;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-quick-links-container {
        padding: 12px;
        width: 100%;
    }
    
    .mobile-quick-links-card {
        width: 100%;
        padding: 12px;
    }
    
    .mobile-requests-card {
        padding: 14px;
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-tiles {
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-tile {
        padding: 18px 14px;
        min-height: 130px;
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-tile-icon {
        width: 28px;
        height: 28px;
    }
    
    .mobile-tile-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-tile-number {
        font-size: 20px;
    }
    
    .mobile-tile-label {
        font-size: 14px;
    }
    
    .mobile-requests-title {
        font-size: 15px;
    }
    
    .mobile-request-status {
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* Bootstrap responsive visibility classes */
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
    .visible-xs {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
    .visible-sm {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .visible-xs,
    .visible-sm {
        display: none !important;
    }
    .hidden-xs,
    .hidden-sm {
        display: block !important;
    }
} 