@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

.form-select.borderless {
    border: none !important;
    /* Remove the border */
    outline: none !important;
    /* Remove the focus outline */
    box-shadow: none !important;
    /* Remove Bootstrap's shadow */
    background-color: transparent;
    /* Optional: make the background transparent */
    appearance: none;
    background-color: #008000;
    color: white;
    font-size: 14px;
    /* Remove default browser styling */
}

.form-select.borderless:focus {
    border: none !important;
    /* Ensure no border on focus */
    outline: none !important;
    /* Prevent focus outline */
    box-shadow: none !important;
    background-color: white;
    color: black;
    /* Prevent focus shadow */
}

a {
    text-decoration: none;
    color: #008000;
}

.head {
    background-color: #008000;
}

.lists {
    color: white;
    font-size: 12px;
}


.logo {
    width: 130px;
}

.buttonc {
    background-color: #008000;

}

.buttonc:hover {
    background-color: #4CAF50;
}

.co {
    color: white;
}

.popbutton {
    background-color: #008000;
    color: white;
}

.popbutton:hover {
    background-color: #4CAF50;
    color: white;
}

.popclosebutton {
    background-color: red;
    color: white;
}

.popclosebutton:hover {
    background-color: rgb(222, 128, 128);
    color: white;
}

.ecoment {
    background-color: lightblue;
}

.yrllow {
    background-color: #daebda !important;
}

.bluee {
    background-color: lightblue;
}

.backgg {
    background-color: lightgray;
}

.bakkk {
    background-color: white;
}

.namesize {
    font-size: 12px;
    color: rgb(105, 100, 100);

}

.labelsize {
    font-size: 15px;
    color: rgb(105, 100, 100);
    font-weight: 500;
}

.textfields {
    font-size: 13px;
    color: #605e5e !important;
}

.assessorheading {
    font-size: 25px;
    font-weight: 600;
}

.linkss {
    font-size: 18px;
    font-weight: 600;
    color: #008000;
}

.fieldofexperties {
    font-size: 18px;
    font-weight: 600;

}

.noexperties {
    font-size: 14px;
    font-weight: 400;
}

.namesizeee {
    font-size: 15px;
    font-weight: 600;
    color: rgb(105, 100, 100);
}

.registerparagraph {
    font-size: 15px;
    font-weight: 600;
    color: #676767;
}

.buttonc {
    background-color: #008000;
    color: white;

}

.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 40px;
}

.logo-box img {
    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}

.file-upload {
    /* Styling for the container */
    padding: 5px;
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 0 5px lightblue;
    /* Light blue shadow */
}

.custom-file-input {
    border: none;
    outline: none;
    font-size: 14px;
}

.custom-file-input::-webkit-file-upload-button {
    border: 1px solid black;
    border-radius: 4px;
    /* Add a 1px black border */
    background: white;
    font-size: 14px;
    cursor: pointer;
}

.custom-file-input:hover::-webkit-file-upload-button {
    background: lightblue;
    /* Button hover effect */
}

body {
    margin: 0;
    padding: 0;
    overflow: auto;
    /* Allow scrolling */
    position: relative;
    /* Prevent content clipping */
    width: 100%;
    height: auto;
    /* Allow height to adjust to content */
}