*{box-sizing: border-box;}
    body{margin:0px; padding:0px;font-family: 'Poppins', sans-serif;}
    
    .heading_top  h1{
        font-weight: 700;
        font-size: 50px;
    }
    .deatils_forms h4{
        font-weight: 700;
        font-size: 25px;
    }
    .deatils_forms .form-label{
        font-weight: 600;
        font-size: 18px;
    }
    .Candidate_1{
        border:1px solid #a6a5a5;
        border-radius: 5px;
        padding:20px;
    }
    .wrapper .btn-danger {
        color: #a6a5a5;
        border:1px solid #a6a5a5;
        background-color: transparent;
        border-radius: 50px;
        font-size: 14px;
    }
    .wrapper .close_icon{
        text-align: right;
    }
    button.btn.btn-outline-secondary{
        padding:12px 30px 12px 30px;
        color: #000;
        border-radius: 10px;
        border:1px solid #a6a5a5;
    }
    button.btn.btn-outline-info {
        color: #000;
        border-radius: 10px;
        border:1px solid #a6a5a5;
        padding:10px 33px 10px 33px;
    }
    .btn-outline-secondary:hover {
        background-color: transparent;
    }
    .btn-outline-info:hover {
        background-color: transparent;
    }
    
    #loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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