body {
background-image: url('/images/dashbg2.svg'); /* Replace with your image path */
background-size: cover; /* Cover the entire section */
background-position: fixed; /* Center the image */
background-attachment: fixed; /* Center the image */
justify-content: center; /* Center content horizontally */
align-items: center; /* Center content vertically */
}
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.header img {
    height: 50px;
}
.header .logout {
    background-color: #DD2E44;
    color: white;
    border: none;
    padding:5px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 50px;
}
.profile .img-bg  {
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    margin-right: 10px;
    align-items: center center;
    justify-content: center ;

}
.profile h1 {
    font-size: 24px;
}
.card .icon{
    position: absolute;
    top: 45px;
    right: 50px;
}
  
.table {
    width: 100%; /* Make the table fill the full width */
}
.table tr  , .table td {
    padding:0.5rem 5rem ;
    text-align: center;
}
.img-preview {
    max-width: 50%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-top: 10px;
};
.rating {
    direction: rtl; /* Right to left for star selection */
}
.rating input {
    display: none; /* Hide radio buttons */
}
.rating label {
    font-size: 2rem; /* Size of stars */
    color: #ddd; /* Default star color */
    cursor: pointer; /* Pointer on hover */
}
.rating input:checked ~ label {
    color: #ffc107; /* Color for selected stars */
}
.rating label:hover,
.rating label:hover ~ label {
    color: #ffc107; /* Color for hovered stars */
}