#overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .7;
    z-index: 9999;
}

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 20px solid #f3f3f3;
    border-radius: 50%;
    border-top: 20px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.plan-tab1{
    width: 523px;
    height: 45px;
    border-radius: 4px;
    background-color: #e4e4e4;
    margin: 20px auto;
    padding: 4px;
}
.plan-tab1 a  {
    width: 169px;
    height: 37px;
    border-radius: 4px;
    
    display: inline-block;
    text-align: center;
    /* line-height: 37px; */
    padding: 10px 0;
    font-weight: 500;
    text-decoration: none;
    color: #1b1919;
    /* background-color: transparent; */
    opacity: 0.5;
    box-shadow: none;
    opacity: 0.5;
}
.plan-tab1 a.active {
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgb(196 196 196 / 50%);
    opacity: 1;
}


.api-key-div {
    /* border: 2px solid #f8bb00; */
    border-radius: 12px;
    padding: 10px 0px 10px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .material-icons {
    font-size: 25px;
    cursor: pointer;
    padding-right: 5px;
  }

  .material-icons-gray {
    color: #cdd8e3;  
  }

.site-icon-container {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px 0px 50px;
}

.org-icon-container {
    display: flex;
    justify-content: space-between;
    padding: 0px 0px 0px 50px;
}

.icon-item {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.material-icons-round {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    color: #cdd8e3;  /* Slightly darker than #eaf1f7 */
}

.icon-background {
    background-color: #eaf1f7;
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.icon-background-small {
    background-color: #eaf1f7;
    border-radius: 50%;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.red-icon {
    background-color: #e34f30; /* Adjust the red color as needed */
    color: #FFFFFF; /* White icon color when red background */
}

.site-status-icon-container{
    text-align: right;
}
.disabled-input{
    color: #9fa9ba !important;
}

/* CSS to ensure text wrapping within Bootstrap table cells */
.table td {
    word-wrap: break-word;  /* Breaks long words */
    word-break: break-word; /* Ensures long words are broken */
    white-space: normal;    /* Allows wrapping of the text */
    max-width: 200px;       /* Sets a maximum width for the table cells */
  }
  