/* Sidebar Outer Box Fix (Only green box) */
.pakdrop-sidebar {
    width: 300px; /* Sidebar width */
    background-color: #02922A; /* Sidebar background color */
    padding-top: 20px; /* Distance from the top */
    position: relative; /* Scrollable sidebar */
    height: 120vh; /* Full page height */
    z-index: 999; /* Ensure it stays on top */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Shadow for the sidebar */
    border-right: 12px solid #0084FF; /* Ensure sidebar border is visible */
    top: 25; /* Align of the page */
    left: 25; /* Align of the page */
}

/* Sidebar Container Styling */
.pakdrop-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%; /* Full height for sidebar */
}

.pakdrop-sidebar ul li {
    margin-bottom: 0; /* Remove bottom margin for better button spacing */
}

.pakdrop-sidebar ul li a {
    display: block;
    padding: 10px 25px; /* Reduced padding for 10 depth, increased 25width */
    text-decoration: none;
    color: white; /* White text color */
    font-size: 20px; /* Increased font size */
    background-color: transparent;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width button */
    box-sizing: border-box; /* Ensures padding does not affect width */
    /* Sidebar Fix - Align all menu items to the left */
    text-align: left; /* Ensures all menu items are left-aligned */
}

.pakdrop-sidebar ul li a:hover {
    background-color: #026B15; /* Darker green on hover */
}

/* Full-width separator line */
.pakdrop-sidebar ul li:not(:last-child) {
    border-bottom: 2px solid #d4d4d4; /* Clear separator with more visibility */
}

/* Mobile view */
@media (max-width: 768px) {
    .pakdrop-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 10px;
        background-color: #02922A !important; /* Force green background */
    }

    .pakdrop-sidebar ul {
        padding-left: 0;
        list-style: none; /* Remove bullets */
    }

    .pakdrop-sidebar ul li {
        margin-bottom: 15px; /* More space between menu items on mobile */
    }

    .pakdrop-sidebar ul li a {
        font-size: 20px; /* Slightly larger text on mobile */
        color: white !important; /* Ensure text color is white */
        display: block; /* Make the link block-level to fill the width */
        padding: 10px; /* Padding for better button appearance */
    }
    
    /* Optional: Adding hover effect on mobile */
    .pakdrop-sidebar ul li a:hover {
        background-color: #026B15; /* Darker green on hover */
    }
}
/* ======= End of the Dashboard Page codes ========= */



/* what is the content ==== for 4 boxes on Profile Page */

/*.dashboard-section {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    gap: 20px;*/
/*    flex-wrap: wrap;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.dashboard-box {*/
/*    background-color: #02922A; */
/*    color: white; */
/*    padding: 20px;*/
/*    border-radius: 10px;*/
/*    width: 22%;*/
/*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
/*    text-align: center;*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    height: auto;*/
/*}*/

/*.dashboard-box .amount {*/
/*    font-size: 2em;*/
/*    font-weight: bold;*/
/*    color: white;*/
/*    margin-bottom: 10px; */
/*    position: relative;*/
/*}*/

/*.dashboard-box .line {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 70%;*/
/*    border-bottom: 2px solid rgba(255, 255, 255, 0.6); */
/*    margin: 0 auto; */
/*    margin-bottom: 10px; */
/*}*/

/*.dashboard-box .label {*/
/*    font-size: 0.9em;*/
/*    color: white;*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .dashboard-box {*/
/*        width: 48%;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .dashboard-box {*/
/*        width: 100%;*/
/*    }*/
/*}*/

/* End ==== End */


/* what is the content ==== for profile box? boxes on Profile Page */
.profile-section {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.profile-section h2 {
    font-size: 1.5em;
    color: #02922A;
    text-align: center;
    margin-bottom: 20px;
}

.profile-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.profile-item label {
    font-weight: bold;
    color: #333;
}

.profile-item p {
    font-size: 1em;
    color: #555;
}

.alert {
    margin-top: 20px;
    background-color: #fce4e4;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.2em;
    color: #f44336;
}


