.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin: auto;
}


.info-button {
    background: linear-gradient(45deg, darkblue, #007bff);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    font-family: serif;
    cursor: pointer;
}

.info-button:hover {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #007bff, darkblue);
    transform: scale(1.05);
    border: none;
}

.info-button:focus {
    outline: none;
    box-shadow: none;
}

.popup {
    display: none;
    position: absolute;
    top: 55px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    width: 320px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dataframe {
    width: 100%;
    border-collapse: collapse;
    /* min-width: 1000px;
    overflow-x: auto;
    display: block; */
}

.dataframe thead {
    background-color: mediumblue;
    color: white;
    top: 0;
    z-index: 1;
}

.dataframe th, .dataframe td {
    padding: 12px 7px;
    text-align: left;
    min-width: 55px;
    max-width: 110px;
    border-bottom: 1px solid #ccc;
    /* white-space: nowrap; */
}

.linear-loader {
    width: 100%;
    /* max-width: 400px; */
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-top: 15px;
    margin-bottom: -5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.linear-loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    height: 100%;
    width: 40%;
    background: linear-gradient(
        to right,
        rgba(52, 152, 219, 0) 0%,
        rgb(7, 3, 243) 50%,
        rgba(52, 152, 219, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

.header {
    width: 100%;
    background-color: transparent;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@font-face {
    font-family: 'MyCustomFont';
    src: url("{{ url_for('static', filename='fonts/condensed/RocheSansCondensed-Regular.woff2') }}") format("woff2"),  
         url("{{ url_for('static', filename='fonts/condensed/RocheSansCondensed-Regular.woff') }}") format("woff"),
         url("{{ url_for('static', filename='fonts/condensed/RocheSansCondensed-Regular.ttf') }}") format('truetype');
    font-weight: normal;
    font-style: normal;
}

.btn-success {
    margin: 10px;
}

.sidebar {
    height: 100vh;
    /* width: auto; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 48px 5px 5px;
    max-width: 270px;
    /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: #f2f2f2; */
}

.sidebar.collapsed {
    width: 0px;
    overflow: hidden;
}

button[type="submit"] {
    background: linear-gradient(45deg, darkblue, #007bff);
}

button[type="submit"]:hover {
    background: linear-gradient(45deg, #007bff, darkblue);
    transform: scale(1.05);
}
.card {
    border: 0px;
    font-family: 'MyCustomFont';
    /*font-family: Verdana;*/
    background: transparent;
}
.container-fluid {
    font-family: 'MyCustomFont', sans-serif;
}

#test_case_search_result{
    font-family: 'MyCustomFont', sans-serif;
}
.card-header h2 {
    color: #0b41cd;
}

input[type="text"], input[type="file"], select {
    /* border: 0px; */
    background: #ffffff;
    box-shadow: 0 8px 16px #00000024, 0 0 2px #0000001f;
    border-radius: 8px;
}

._headerIcon_1e0ns_34 {
    height: 40px;
    width: auto;
    margin-right: 5px;
}

.form-group h6 {
    color: #0b41cd;
    font-style: normal;
    font-weight: 400;
}

.card-header h6 {
    color: #2695FA;
    font-weight: bolder;
    font-size: 12px;
}

.card {
    border: 0px;
    font-style: normal;
   /* font-family: Verdana;*/
    background: transparent;
}


.card-header {
    border: 0px;
    background: transparent;
}
#toggleIcon {
    font-family: cursive;
    color: black;
    font-size: 30px;
}
#sidebarToggle {
    position: fixed;
    /* top: 10px; */
    left: 230px; /* Adjust based on sidebar width */
    /* height: 20px; */
    z-index: 1100;
    background-color: transparent;
    border: 0px;
    transition: left 0.3s;
}

#sidebarToggle:focus {
    border: 0px;
    box-shadow: 0 0 0 0 rgba(38, 143, 255, .5);
}

.sidebar.collapsed + #sidebarToggle {
    left: 0;
}

.tab-content {
    margin-left: 100px;
    transition: left 0.3s;
}

.sidebar-heading {
    padding: 10px 15px;
    font-size: 1.25rem;
    text-align: center;
}

.dropdown-menu {
    width: 100%;
}

.dropdown-item.active {
    background-color: #007bff;
    color: white;
}

.custom-file-input-wrapper {
    position: relative;
}

.custom-file-input {
    padding-right: 30px;
}

.remove-file {
    /* position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%); */
    margin-left: -25px;
    cursor: pointer;
    font-size: 25px;
    color: red;
}

body {
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

table {
    width:100%;
}
