/*---INDEX---*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    box-sizing: border-box;
}

.indexpage {
    background: #f6f5f700;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
   
    margin: 10px 0 50px;
}

h1 {
    font-weight: bold;
    margin: 0;
}

h2 {
    text-align: center;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.arrow {
    color: #fffdfd;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}



button {
    border-radius: 20px;
    border: 1px solid #ef7008;
    background-color: #ef7008;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-bottom: 10px;
}

#closeFormButton{
    border-radius: 20px;
    border: 1px solid #ef7008;
    background-color: #ef7008;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-bottom: 10px;
}

#adminsignup{
    border-radius: 20px;
    border: 1px solid #ef7008;
    background-color: #ef7008;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-bottom: 10px;
}

.dropbtn{
    border-radius: 10px;
    background-color: orange;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-bottom: 10px;
}

.dropbtn:hover{
    background-color:#36225d; 
}

.button1{
    border-radius: 20px;
    border: 1px solid #ef7008;
    background-color: #ef7008;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top: 20px;
}


.button2{
    border-radius: 20px;
    border: 1px solid #ef7008;
    background-color: #ef7008;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top: 20px;
}

.form-group{
    display: flex;
    align-items: center;
    margin-top: -235px;
}


.button1:hover{
    background-color: #ef7008;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

button.ghost:hover{
    color:orange;
    background-color: transparent;
}

form {
    background-color: #f6f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

#myForm {
    background-color: #f6f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
    display: none;
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.container {
    background-color: #bebebe;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
                0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

.containerpsw{

    border-radius: 10px;
   
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
    min-height: 382px;
    margin-left: 26%;
    margin-top: -155px;

}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }
    
    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container{
    transform: translateX(-100%);
}

.overlay {
    background: #231F5C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #3d31e4d9, #231f5cfa);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}

.gmail_icon {
    width: 30px;
}

.main_logo {
    color: #231F5C;
}

.admin-button {
    border-radius: 20px;
    border: 1px solid #ef7008;
    background-color: #ef7008;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-bottom: 15px;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: static;
    bottom: 525px;
    right: 40px;
    width: 221px;
    margin-top: 12px;
}

.admin-button:hover{
    background-color: #ef7008 ;
    
}

.or {
    font-weight: bolder;
    font-size: larger;
    padding: 25px;
}

.rnd {
    font-family: none;
    font-size: 400%;
    text-decoration: underline;
    color: #393939;
}

.team {
    font-size: 300%;
    color: #393939;
    font-family: none;
    margin-top: 15px;
    margin-bottom: -38px;
    text-decoration: underline;
}

.info {
    font-size: 150%;
    color: #393939;
    font-family: none;
}

.infoP {
    font-size: 150%;
    color: #393939;
    font-family: none;
    margin-top: 148px;
    margin-bottom: 13px;
    font-family: 'Poppins', sans-serif;
}

.infoR {
    font-size: 150%;
    color: #393939;
    font-family: none;
    margin-top: 70px;
    margin-bottom: 44px;
    font-family: 'Poppins', sans-serif;
}

.halfinfo {
    margin-top: 66px;
}

.production {
    font-family: none;
    font-size: 300%;
    text-decoration: underline;
    color: #393939;
}

.gobutton:hover {
    background: #ef7008;
}

.gobutton {
    position: relative;
    padding: 13px 20px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font: 700 30px consolas;
    overflow: hidden;
    margin-top: -1px;
    margin-bottom: 40px;
    color: #393939;
}

.h-divider {
    margin: auto;
    margin-top: 80px;
    width: 120%;
    position: absolute;
    margin-top: -10px;
}

.h-divider .shadow {
    overflow: hidden;
    height: 20px;
}

.h-divider .shadow:after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 12 0%;
    height: 25px;
    border-radius: 125px/12px;
    box-shadow: 0 0 8px black;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');

/* ADMIN / R & D / PRODUCTION REGISTRATION PAGE CSS */


:root {
    --primary-color: #4EA685;
    --secondary-color: #57B894;
    --black: #000000;
    --white: #ffffff;
    --gray: #efefef;
    --gray-2: #757575;

    --facebook-color: #4267B2;
    --google-color: #DB4437;
    --twitter-color: #1DA1F2;
    --insta-color: #E1306C;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.containerA {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.col {
    width: 50%;
}

.align-items-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-wrapper {
    width: 100%;
    max-width: 28rem;
}

.form {
    padding: 1rem;
    background-color: var(--white);
    border-radius: 1.5rem;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(0);
    transition: .5s ease-in-out;
    transition-delay: 1s;
}

.input-group {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    text-align: center;
}

.input-group-2 {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    text-align: center;
}


.input-group i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--gray-2);
}

.input-group input {
    width: 100%;
    padding: 1rem 3rem;
    font-size: 1rem;
    background-color: var(--gray);
    border-radius: .5rem;
    border: 0.125rem solid var(--white);
    outline: none;
}

.input-group input:focus {
    border: 0.125rem solid var(--primary-color);
}

.form button {
    cursor: pointer;
    width: 100%;
    padding: .6rem 0;
    border-radius: .5rem;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    outline: none;
}

.form p {
    margin: 1rem 0;
    font-size: .7rem;
}

.flex-col {
    flex-direction: column;
}

.social-list {
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 1.5rem;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(0);
    transition: .5s ease-in-out;
    transition-delay: 1.2s;
}

.social-list>div {
    color: var(--white);
    margin: 0 .5rem;
    padding: .7rem;
    cursor: pointer;
    border-radius: .5rem;
    cursor: pointer;
    transform: scale(0);
    transition: .5s ease-in-out;
}

.social-list>div:nth-child(1) {
    transition-delay: 1.4s;
}

.social-list>div:nth-child(2) {
    transition-delay: 1.6s;
}

.social-list>div:nth-child(3) {
    transition-delay: 1.8s;
}

.social-list>div:nth-child(4) {
    transition-delay: 2s;
}

.social-list>div>i {
    font-size: 1.5rem;
    transition: .4s ease-in-out;
}

.social-list>div:hover i {
    transform: scale(1.5);
}

.facebook-bg {
    background-color: var(--facebook-color);
}

.google-bg {
    background-color: var(--google-color);
}

.twitter-bg {
    background-color: var(--twitter-color);
}

.insta-bg {
    background-color: var(--insta-color);
}

.pointer {
    cursor: pointer;
}

.containerA.sign-in .form.sign-in,
.containerA.sign-in .social-list.sign-in,
.containerA.sign-in .social-list.sign-in>div,
.containerA.sign-up .form.sign-up,
.containerA.sign-up .social-list.sign-up,
.containerA.sign-up .social-list.sign-up>div {
    transform: scale(1);
}

.content-row {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 6;
    width: 100%;
}

.text {
    margin: 4rem;
    color: var(--white);
}

.text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2rem 0;
    transition: 1s ease-in-out;
}

.text p {
    font-weight: 600;
    transition: 1s ease-in-out;
    transition-delay: .2s;
}

.img img {
    width: 30vw;
    transition: 1s ease-in-out;
    transition-delay: .4s;
}

.text.sign-in h2,
.text.sign-in p,
.img.sign-in img {
    transform: translateX(-250%);
}

.text.sign-up h2,
.text.sign-up p,
.img.sign-up img {
    transform: translateX(250%);
}

.containerA.sign-in .text.sign-in h2,
.containerA.sign-in .text.sign-in p,
.containerA.sign-in .img.sign-in img,
.containerA.sign-up .text.sign-up h2,
.containerA.sign-up .text.sign-up p,
.containerA.sign-up .img.sign-up img {
    transform: translateX(0);
}

/* BACKGROUND */

.containerA::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300vw;
    transform: translate(35%, 0);
    background-image: linear-gradient(-45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: 1s ease-in-out;
    z-index: 6;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-bottom-right-radius: max(50vw, 50vh);
    border-top-left-radius: max(50vw, 50vh);
}

.containerA.sign-in::before {
    transform: translate(0, 0);
    right: 50%;
}

.containerA.sign-up::before {
    transform: translate(100%, 0);
    right: 50%;
}

/* RESPONSIVE */

@media only screen and (max-width: 425px) {

    .containerA::before,
    .containerA.sign-in::before,
    .containerA.sign-up::before {
        height: 100vh;
        border-bottom-right-radius: 0;
        border-top-left-radius: 0;
        z-index: 0;
        transform: none;
        right: 0;
    }

    /* .container.sign-in .col.sign-up {
        transform: translateY(100%);
    } */

    .containerA.sign-in .col.sign-in,
    .containerA.sign-up .col.sign-up {
        transform: translateY(0);
    }

    .content-row {
        align-items: flex-start !important;
    }

    .content-row .col {
        transform: translateY(0);
        background-color: unset;
    }

    .col {
        width: 100%;
        position: absolute;
        padding: 2rem;
        background-color: var(--white);
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
        transform: translateY(100%);
        transition: 1s ease-in-out;
    }

    .row {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .form,
    .social-list {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

    .text {
        margin: 0;
    }

    .text p {
        display: none;
    }

    .text h2 {
        margin: .5rem;
        font-size: 2rem;
    }
}

/*---------------Rd.php------------------------*/


.container1 {
    border-collapse: collapse;
    width: 1300px;
}

th,
td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

th {
    background-color: #4caf50;
    color: white;
}

.topic_input[type="text"] {
    width: 94%;
    padding: 8px;
    border: 2px solid #999;
    border-radius: 13px;
    font-family: system-ui;
    font-weight: 500;
    font-size: 105%;
}

.topic_input[type="file"] {
    padding: 8px;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 11px 24px;
}

.topic_input{
    width: 94%;
    padding: 8px;
    border: 2px solid #999;
    border-radius: 13px;
    font-family: system-ui;
    font-weight: 500;
    font-size: 105%;
}

.fileupload {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: center;
    margin-top: 65px;
    flex-wrap: nowrap;
    column-gap: 46px;
}

.fileuploadheading {
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    font-size: 150%;
    text-decoration: underline;
    margin-top:20px;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: none;
}

.btn1 {
    color: gray;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    text-decoration: none;
}

.btn1:hover {
    background: #ccccb3;
    color: black;
}

.upload-btn-wrapper .topic_input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

#fileDescription {
    width: 30%;
    border-radius: 15px;
    padding: 8px;
    text-align: center;
}

.row {
    display: flex;
    align-items: center;
}

#submitrdbutton {
    text-align: center;
    margin: 25px 400px;
    height: 40px;
    width: 100px;
    color: red;
    border-radius: 43px;
}

.wrapper {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    margin-top: 59PX;
    text-align: center
}

a:hover {
    letter-spacing: 2px;
    
}

.submitrdbutton1:hover {
    letter-spacing: 8px;
    background-color: #7654f0;
}

button {
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
}

.button

button:hover {
    background-color: #ff0000;
}

.submitrdbutton1 {
    display: block;
    font-size: 24px;
    text-decoration: none;
    color: #333;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 10px;
    letter-spacing: 2px;
    transition: all .25s;
    border-right: 2px solid #333;
    border-left: 2px solid #333;
    border-radius: 56px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 80px;
}

.footerrd {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2px;
    height: 20px;
    font-size: 14px;
    margin-top: 0%;
    padding-bottom: 45px;
    position: relative;
    width: 100%;
}

.footerr{
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2px;
    height: 20px;
    font-size: 14px;
    margin-top: 0%;
    padding-bottom: 45px;
    position: relative;
    width: 100%;
}

.topic_head {
    font-family: system-ui;
    font-weight: 700;
    font-size: 113%;
}

.logo_heading {
    font-family: Lora;
    font-size: xx-large;
    margin-bottom: 50px;
}

.dixon1 {
    color: #1d225c;
    margin: 17px 28px;
    font-size: xxx-large;
}

#Google_Drive_Link {
   
    width: 600px;
    text-align: center;
    box-shadow: grey 12px 9px 10px -6px;
    border: 2px solid #999;
    border-radius: 13px;
    font-family: system-ui;
    font-weight: 500;
    font-size: 105%;
}

.form-btn {
    margin: 35px 600px;
}

.dropdown1-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Show the dropdown menu */
.show {
    display: grid;
    align-items: baseline;
    justify-items: stretch;
    align-content: center;
}

.submitrd {
  width: 121px;
  height: 42px;
  box-shadow: 9px 8px 8px;
  border-radius: 16px;
  font-family: none;
  font-size: 25px;
  font-weight: bolder;
  border: revert;
  padding: 6px;
}

.submitrd:hover {
    color: white;
    background: #1d225c;
}

/*------------------ALL-SOFTWARE-RD-PAGE / ALL REVISED SOFTWARE ------------------------------*/

.allsrd{
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.containerar {
    width: fit-content;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.headerar {
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 20px;
    background-color: #333;
    color: #fff;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.headerar h2 {
    margin: 0;
    font-size: 28px;
    padding: 10px 0;
}

.menu-btnar {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    background-color: grey;
    color: white;
    float: right;
    margin-top: -40px;
}

.menu-btnar:hover {
    background-color: #555;
}

.dropdownar {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 3;
    border-radius: 8px;
    display: none;
    font-family: sans-serif;
    font-weight: 700;
}

.dropdownar a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.allsoftrd {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.search-formrd {
    margin-bottom: 20px;
    text-align: center;
}

.search-inputrd {
    padding: 8px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}
  
.search-formrd {
    margin-bottom: 20px;
    text-align: center;
}

.search-inputrd {
    padding: 8px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

    
th, td {
    border: 1.5px solid black;
    padding: 12px;
    text-align: center;
    position: relative;
}

.container1 th,
.container1 td {
    border: 0px solid rgb(255, 254, 254);
    padding: 12px;
    text-align: left;
    position: relative;
}

.thrd{
    color: #f2f2f2;
    font-size: 16px;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #4caf50;
}

td {
    font-size: 14px;
    font-weight: 700;
    font-family: system-ui;
}

.description {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-row {
    text-align: center;
    color: #999;
}

/*----------------ALL SOFTWARE FILE PRODUCTION-----------------------------------*/

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}


.empty-row {
    text-align: center;
    color: #999;
}

.search-form {
    margin-bottom: 20px;
    text-align: center;
}

.search-input {
    padding: 8px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}
.filter-dropdown {
    margin-bottom: 20px;
    text-align: center;
}

.filter-dropdown select {
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Blinking animation for new status */
@keyframes blink {
    0% { background-color: inherit; }
    50% { color: red; }
    100% { background-color: inherit; }
}

.blink-new {
    animation: blink 1s infinite;
}

.important{
    color: red;
}


.button_login:hover {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 11);
    background-color: #146cad;
    color: white;
}

.footerpswd {
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 0;
    height: 20px;
    font-size: 14px;
    margin-top: 49vh;
    position: relative;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #005f73;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
}

.card-body {
    padding: 2rem;
}

.form-control {
    border-radius: 25px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1.25rem;
}

.button_login {
    background-color: #005f73;
    border: none;
    border-radius: 25px;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.button_login1 {
    background-color: #005f73;
    border: none;
    border-radius: 25px;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: -245px;
    margin-left: -100px;
}

        /* Preloader styles */
        #preloader {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            z-index: 9999;
            display: none; /* Hide by default */
            align-items: center;
            justify-content: center;
        }
        #preloader .loader {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #3498db;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 2s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .file-upload-container {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.file-input {
    display: none; /* Hide the actual file input */
}

.file-label {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1d225c;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 30px;
    margin-bottom: -16px;
}

.file-label:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.file-selected {
    display: block;
    margin-top: 10px;
    color: #555;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s;
}



.file-input:valid + .file-label + .file-selected {
    opacity: 1; /* Show selected file message */
    margin-top: 25px;
}

.file-input:focus + .file-label {
    outline: 2px dashed #2980b9;
}


.file-selected1 {
    display: block;
    margin-top: 10px;
    color: #555;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s;
}

.file-selected2 {
    display: contents;
    margin-top: 10px;
    color: #555;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s;
}


.file-input:valid + .file-label + .file-selected1 {
    opacity: 1; /* Show selected file message */
    margin-top: 25px;
}

.file-input:focus + .file-label {
    outline: 2px dashed #2980b9;
}



