
body {
    color: #ffffff; /* White text color */
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.d-none {
    display: none !important;
}

/*.list-group-item {
    background: #d1703c;
    color: #000;
    margin: 10px 0;
    width: 10em;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    padding:0;
    font-weight: bold; 
    transition: opacity 0.5s ease;
} */

.list-group-item {
    font-size: 25px;
    font-weight: bold; 
    transition: opacity 0.5s ease;
    border: none;
    background-color:#000;
    padding:0;
    padding-bottom:2px;
}

h1 {
    text-align: center;
}

h1, p, h2, h3, h4, div {
    margin: 0;
    padding: 0;
}

.loading-page,
.random-loading {
    background: rgb(255 255 255 / 70%);
    width: 100%;
    height: 30svh;
    display: block; /* Changed from display: -webkit-box; to flex for better browser compatibility */
    justify-content: center;
    align-items: center;
}

.loading-page .counter,
.random-loading .random-counter {
    margin:auto;
    text-align: center;
}

.loading-page .counter p,
.random-loading-font {
    font-size: 50px;
    font-weight: 700;
    color: #f60d54;
}

.loading-page .counter h1,
.random-header {
    color: #000;
    font-size: 65px;
    margin-top: -10px;
}

.loading-page .counter hr,
.random-loading .random-counter hr {
    background: #f60d54;
    border: none;
    height: 3px;
    width: 100%; /* Ensures the line spans the entire width */
}

.loading-page .counter,
.random-loading .random-counter {
    position: relative;
    width: 200px;
}

.loading-page .counter h1.abs,
.random-loading .random-counter h1.abs {
    position: absolute;
    top: 0;
    width: 100%;
}

.loading-page .counter .color,
.random-loading .random-counter .color {
    width: 0px;
    overflow: hidden;
    color: #f60d54;
}

/* Content of the list/ shuffle list */
.background-content {
    background-color:rgb(255 255 255 / 70%);
    padding: 10px 10px;
    height: 500px;
}

.header-container {
    color:#000;
    text-align: center;
}

.row {
    margin-left: 0px;;
}

#companyList .col-6 {
    padding: 10px; /* Adjust padding as needed */
    color:#000;
    font-size:22px;
    font-weight:800;
    word-wrap: break-word; /* Allow long words to wrap */
    white-space: normal; 
}

#randomCompanyList .col-6 {
    padding: 10px; /* Adjust padding as needed */
    color:#000;
    font-size:22px;
    font-weight:800;
    word-wrap: break-word; /* Allow long words to wrap */
    white-space: normal; 
}

#companyList .col-6 .d-none {
    display: none;
}

#background-video {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

@media(max-width:1344px){
    #background-video{
        top:75%
    }

    #companyList .col-6 {
        font-size:17px;
        padding:6px;
    }

    #randomCompanyList .col-6 {
        font-size:17px;
        padding:6px;
    }

    .background-content{
        height:420px;
    }
}
/* End */

/*Ring Styles */
/* #preloader {
    width: 100%;
    height: 30vh;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
} */
/* End Ring Style */

/* Style for animated list items */
/*li {
    list-style: none;
    background: #d1703c;
    color: #fff;
    height: 3em; 
    line-height: 3em;
    margin: 10px 0;
    padding: 0 0.5em;
    overflow: hidden;
    width: 10em;
    border-radius: 5px;
}*/

/* Style for showing list items */
/* li.show {
    height: 3em; 
    margin: 10px 0; 
    overflow: hidden;
    transition: height 0.3s ease;
}*/

@keyframes swing {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(5deg);
    }
    75% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
}
  
.swing-animation {
animation: swing 1s ease;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Override the btn primary color */
.btn-primary {
    background-color:#db9305;
    border-color:#db9305;
}