body {
    background: #f8f9fa;
    padding: 0;
}

.gradient-tabs {
    background: linear-gradient(145deg, #fff, #fff);
    padding: 0.2rem;
    border-radius: 0.5rem;
}

.gradient-tabs .nav-tabs {
    border: none;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.gradient-tabs .nav-link {
    border: none;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.gradient-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.gradient-tabs .nav-link.active {
    background: white;
    color: #6366f1;
}

.gradient-tabs .tab-content {
    background: white;
    padding: 0rem;
    border-radius: 0.5rem;
}

/* Content Animation */
.tab-pane.fade {
    transition: all 0.2s ease-out;
}

.tab-pane.fade.show {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 .form-right{
    padding: 20px 40px;
    position: relative;
    width: 100%;
}

 .form-right h2{
    color: #0802bf;
}

 .form-right label{
    font-weight: 600;
    font-size: 15px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

 .form-right .input-field{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e5e5e5;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    outline: none;
    color: #333;
}

 .form-right .input-field:focus{
    border: 1px solid #31a031;
}


 .option {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    user-select: none
}

 .option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

 .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 2px
}

 .option:hover input~.checkmark {
    background-color: #f1f1f1
}

 .option input:checked~.checkmark {
    border: 2px solid #e5e5e5;
    background-color: #fff;
    transition: 300ms ease-in-out all
}

 .checkmark:after {
    content: "\2713";
    position: absolute;
    display: none;
    color: #0802bf;
    font-size: 1rem;
}

 .option input:checked~.checkmark:after {
    display: block
}

 .option .checkmark:after {
    left: 2px;
    top: -4px;
    width: 5px;
    height: 10px
}

 .register{
    padding: 12px;
    background: #0802bf;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 130px;
    border: none;
    margin: 6px 0 50px 0px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

 .register:hover{
    background-color: #0802bf;
}

 a{
    text-decoration: none;
}

.dateSelectorDiv div {
    background-color: red;
}


.availabilityList .nav-item{
    height:0;
    width:15%;
    padding-bottom:10%;
}

.availabilityList .active{
    background-color: #6366f1;
    color:#fff;
}