@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto";
}

.main-contentor{
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     padding: 20px;
     
 }
 .boxes{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
 }
 .box{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    gap:35px;
 }
 .navbar{
    width:100%;
    display: flex;
    justify-content: space-between;
    gap:10px;
    flex-wrap: wrap;
}

.camp-link{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.navbar .pack-link{
    font-size: 14px;
    color: #088994;
    font-weight: bold;
    cursor: pointer;
}
.navbar  .pack-link2{
    padding: 5px 10px;
    background-color: #10578B;
    font-size: 14px;
    font-weight: 500;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.camp-head{
    font-size: 18px;
    color: #088994;
    font-weight: bold;
}
.box1{
    width:100%;
    display: flex;
    flex-wrap:wrap ;
    justify-content: center;
    align-items: center;
    gap:15px;
    font-size: 14px;
}
.box1 .card{
    padding: 8px;
    width:250px;
    height:150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap:15px;
    color:white;
    border-radius: 5px;
    transition: all 0.5s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.box1 .card:hover{
    transform: scale(1.08);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.box1 .card i{
    font-size: 18px;
}
.box1 .card>p{
    text-align: center;
}
.box1 .card span{
    font-weight: 500;
    font-size: 16px;
}
.card1{
    background-color: rgb(4, 135, 153);
}
.card2{
    background-color: rgb(122, 35, 80);
}
.card3{
    background-color: rgb(16, 87, 139);
    color:white;
}
.card4{
    background-color: rgb(250, 196, 0);
}

/* form */

.data{
    display:flex ;
    align-items:center ;
    flex-direction: column;
    gap: 20px;
}
.form{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.form label{
    font-size: 14px;
    font-weight: 500;
}
.form .form-group{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.form .form-group .required-fields{
    color: red;
}

.form-group input{
    padding: 8px;
    border-radius: 8px;
    outline: none;
    border: none;
    border: 1px solid gray;
    width: 240px;
}
.form-group select{
    padding: 8px;
    border-radius: 8px;
    outline: none;
    border: none;
    border: 1px solid gray;
    width: 240px;
}
.form-group-checkbox {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.form-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.checkbox-btn {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.checkbox-btn input[type="checkbox"] {
    margin-right: 4px;
}



/* image and video upload */
.main-uploading{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap:wrap ;
    width: 100%;
    gap: 10px;
}
.main-uploading .uploading-area{
    border: 2px dotted #088994;
    padding: 5px;
    height: max-content;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}
.uploading-area>span{
    color: #10578B;
    font-size: 16px;
}
.uploading-area .upload-section{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}
.upload-section input{
    padding-left: 60px;
    color: #088994;
}
.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
.upload-preview img{
    max-width: 65px;
    max-height: 65px;
    object-fit: cover;
    position: relative;
}
.upload-preview video {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    position: relative;
}
.delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.preview-container {
    position: relative;
    display: inline-block;
}
#submitButton{
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    color: white;
    background-color: #088994;
    border-radius: 4px;
    cursor: pointer;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}
@media (max-width:768px) {
    .form-group{
        width: 100%;
    }
    .form-group input, .form-group select{
        width: 100%;
    }
}

/* notify or pop up */
.customNotification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 20px 10px;
    border-radius: 12px;
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    z-index: 9999;
    display: none;
    text-align: center;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    opacity: 0;  /* Set initial opacity to 0 for smooth fade-in */
    transition: opacity 0.3s ease, transform 0.3s ease;  /* Add transition for opacity and transform */
}

#notificationMessage {
    padding: 10px 5px;
    margin-bottom: 20px;
}

.okButton {
    background-color: #ffffff;
    color: #4caf50;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.okButton:hover {
    background-color: #f1f1f1;
}
