.dashboard {
    padding: 20px;
    background-color: #eeeded;
} 

.dashboard-header {
    padding-top: 50px;
    text-align: center;
}

.dashboard-details {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    direction: rtl;
    text-align: start;
}

.dashboard-detail {
    padding: 20px;
    width: 200px;
    background-color: white;
    border-radius: 8px;
    
}

.dashboard-detail_title {
    color: black;
}

.dashboard-detail_subtitle{
    padding: 0;
}

.dashboard-detail_link {
    color: dodgerblue;
}

.dashboard-info {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 50px;
    border-radius: 8px;
    background-color: white;
    position: relative;
}

.dashboard-info_main {
    position: absolute;
    top: 25px;
    right: 25px;
}

.dashboard-info_title {
    margin-top: 20px;
    font-size: 35px;
}

.dashboard-info_subtitle {
    width: 300px;
    margin-top: 20px;
}

.chart-container {
    width: 80%;
    max-width: 800px;
    height: 350px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chart-title {
    text-align: right;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.dashboard-services {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: center;
    direction: rtl;
}

.dashboard-service {
    padding: 20px;
    width: 200px;
    background-color: white;
    border-radius: 8px;
    
}

.dashboard-service_title {
    padding-top: 5px;
}

.dashboard-quickaccess {
        padding-top: 50px;
        position: relative;
}

.dashboard-quickaccess_boxs {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: center;
    direction: rtl;
}

.dashboard-quickaccess_box {
    padding: 20px;
    width: 200px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.dashboard-quickaccess_title {
    font-size: 35px;
    font-family: "morabba";
    position: absolute;
    right: 150px;
    top: 40px;
    margin-bottom: 10px;
}

.dashboard-quickaccess_subtitle {
    padding-top: 10px;
}


