.input-warning {
    color: red;
    display: none;
    margin-top: 8px;
}

.input_txt::placeholder {
    color: gray;
}



#dashboard-root-container {
    justify-content: space-between;
}

@media (max-width: 600px) {
    #dashboard-root-container {
        justify-content: space-around;
    }
}


#dashboard-reason-chart {
    justify-content: space-between;
}

@media (max-width: 600px) {
    #dashboard-reason-chart {
        justify-content: space-around;
    }
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.dialog {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-responsive {
    margin-top: 0px;
}

/* for manu */

.main-content {
    transition: margin-right 0.3s ease-in-out;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.main-content.shrink {
    margin-right: 250px;
}

.toggle-btn {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
}

.toggle-btn.moved {
    right: 260px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        right: -100%;
    }

    .sidebar.open {
        right: 0;
    }

    .main-content.shrink {
        margin-right: 0;
    }

    .toggle-btn.moved {
        right: 10px;
    }
}