
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
}

/*form {
    margin-top: 20px;
}*/

/*input {
    display: block;
    margin-bottom: 10px;
    padding: 5px;
    width: 100%;
    max-width:400px ;
}*/
.scrollable-list{
    max-height: 450px;
    overflow-y: auto;
}

.modified-list{
    max-height:200px;
    overflow-y:auto;
    padding:10px;
}
input[type="checkbox"] {
  
  width: 20px;
  height: 20px;
  border: 2px solid #000; /* Custom border */
}

input[type="checkbox"]:checked {
  width: 20px;
  height: 20px;
  border: 2px solid #000; /* Custom border */
  background-color: #fff; /* Custom checked state */
}


#modifiedlist  {
    display: none;
    position: fixed; /* Allows the div to overlap the rest of the page */
    top: 50;
    left: 300;
    color: white;
    font-size: 10px;
    /*height: 100vh; Full height */
    background-color: rgba(0,0,0,0.75);
    z-index: 1000; /* Ensure it's above other content */
    max-height:200px;
    overflow-y:auto;
    padding:10px;
    
}
#modified {
    font-size: 11px;
}

#modified:hover + #modifiedlist,
#modifiedlist:hover {
    display: block; /* Show the overlay when hovering */
    
}
.iswhite{
    color:white;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: bleu;
}

.tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: black;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position above the tooltip */
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
}

.pro-form{
    display: flex;
    flex-direction: column;
}

/*label{
   margin-top: 10px;
   font-size: 16px;
   color: #555;
   font-weight: bold; 
}*/

/*input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f1f1f1;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}*/

/* Input focus effect */
/*input:focus {
    border-color: #777;
    outline: none;
    background-color: #fff;
}*/

/* Button styling */
/*button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, #B7E0FF, #87A2FF);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 15px;
}

button:hover {
    background: linear-gradient(to right, #fff, #999);
}*/

.flex-container{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.flex-item{
    flex: 1;
    padding: 10px;
    margin: 5px;
}

/* Link styling */
/*footer {
    padding-top: 40px;
}*/

.rounded-box {
    list-style-type: none;  
    padding: 20px;
    background-color: #f9f9f9;  
    border-radius: 15px;  
    border: 1px solid #ccc; 
}

.rounded-box li {
    margin: 10px 0;
    padding: 5px 10px;
    background-color: #fff;  
    border-radius: 10px; 
    text-align: left ;
    box-shadow: 4px 4px 10px  rgba(125,125,125,0.6);
    min-width: 100%;

}
.margin-right{
    
    display: inline-block;
    

}


