body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a09e9c;
    text-transform: initial;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
    background-color: #CBDCF7;
}

/* Make all labels bold */
label {
    font-weight: 700 !important;
    color: black !important;
    /* Bold font */
}

/* Make input borders thicker */
input,
select,
textarea {
    border: 2px solid black !important;
    outline: none;
}

/* Add a stronger border on focus */
input:focus,
select:focus,
textarea:focus {
    border: 3px solid #007bff !important;
    /* Blue focus border */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-color1 {
    background-color: #DD22CA;
    color: white;
    font-weight: bold;
}

tr.bg-success {
    background-color: #198754 !important;
    color: white !important;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='15' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
    border-color: white;
}

.apply-btn {
    display: inline-block;
    padding: 15px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(45deg, #0d6efd, #198754);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
