#logo{
    position:absolute;
    width:790px;
    height:750px;
    left:-20%;
    top:14%;
    opacity: 50%;
    z-index: -1;
}

body{
    background-color: #87CEEB    ;    
}

.search{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#searchbar{
 width: 650px;
 height: 30px;
}

.adminform{
    border: solid 1px;
    padding:10px;
    background-color: white;
    padding-left: 30px;
    position:absolute;
    bottom: 50%;
    left: 40%;
    width: 250px;
    height:200px;

}

.log-btn{
    position: absolute;
left:65%;
top: 80%;
}

.card{
    top:30%;
    left:25%;
    width:900px;
}

.table2{
    
    background-color: white;
   
    position:absolute;
    bottom: 50%;
    left: 40%;
}

.btns2{
    position:absolute;
   
    left: 45%;
}



.loginform{
    border: solid 1px;
    padding:10px;
    background-color: white;
    padding-left: 30px;
    position:absolute;
    bottom: 50%;
    left: 40%;
    width: 250px;
    height:250px;

}

.details{

    border: solid 1px;
    padding:10px;
    background-color: white;
    padding-left: 30px;
    position:absolute;
    bottom: 30%;
    left: 40%;
    width: 500px;
    height:500px;

}




.department{
    border: solid 1px;
    padding:10px;
    background-color: white;
    padding-left: 30px;
    position:absolute;
    bottom: 6%;
    left: 15%;
    width: 1270px;
    height:750px;
}

.header{
    position:absolute;
    left:30%;
}

.author-panelist-box {
    border: 1px solid #ccc; /* Add a border around the box */
    padding: 10px; /* Add some padding to the box */
    margin-bottom: 10px; /* Add margin at the bottom to separate it from other elements */
}


.table tbody tr.active {
    background-color: transparent !important;
}

.modal-backdrop {
    z-index: -1 !important;
}


.department-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.department-logo {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 10px;
}

.department-logo img {
    max-width: 100px; /* Adjust the size of the logos as needed */
    display: block;
    margin: 0 auto;
}

.count {
    font-size: 24px; /* Adjust the font size of the count */
    margin-top: 10px;
}

.textcenter{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* styles.css */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
    color: #495057;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Custom styles to adjust the dropdown menu position */
.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 10rem;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #343a40;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropdown-menu li {
position: relative;
}
.dropdown-menu .dropdown-submenu {
display: none;
position: absolute;
left: 100%;
top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
right: 100%;
left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
display: block;
}

.delimiter {
    display: none;
}


.uploadform {
    display: flex;
    justify-content: center; /* Center align the form */
    margin-top: 20px;
}
/* Center the entire form */
.form-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the container covers the full viewport height */
}

/* Styles for the form container */

/* Center align the form */
.form-container {
    width: 20%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}



.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    margin-bottom: 10px;
}

.button-container {
    width: 100%;
    text-align: center;
}

.button-container button {
    width: auto;
}

.image-container {
    text-align: center;
}

.image-container img {
    width: 100px; /* Adjust as needed */
    height: auto;
}

@media only screen and (max-width: 768px) {
    .form-container {
        width: 80%;
    }
}


/* Style for progress bar */
#progressWrapper {
    margin-top: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 30px; /* Increased height */
    width: 100%; /* Make progress bar width 100% */
    position: relative; /* Position relative for absolute positioning of progress text */
}

#progressBar {
    background-color: #007bff; /* Changed color to blue */
    height: 100%;
    width: 0;
}

#progressText {
    line-height: 30px; /* Center text vertically */
    text-align: center;
    color: #fff; /* Changed text color to white */
    font-weight: bold;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
