/*.fluid {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  max-width: 0;*/
/*  width: 100%;*/
/*}*/

.fluid {
    --width-content: 100%;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value to change transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Styles for the spinner */
.loader {
    border: 5px solid rgba(255, 255, 255, 0.3); /* Adjust the alpha value to change transparency */
    border-top: 5px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.parent-row {
    cursor: pointer;
}

.child-row {
    display: none;
}


.comment-box {
    margin-top: 20px;
}

.comment {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    
}

    .comment .user-info {
        font-weight: bold;
        color: #333;
    }

    .comment .timestamp {
        color: #666;
        font-size: 0.8em;
    }
.dropdown {
    position: relative;
    /*display: inline-block;*/
}

.dropdown-content {
    display: none;
    /*position: absolute;*/
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 200px; /* Set your desired max height */
    overflow-y: auto;
}

    .dropdown-content label {
        display: block;
        margin-bottom: 8px;
    }

.close-button {
    display: block;
    padding: 8px;
    cursor: pointer;
    background-color: #ddd;
}