.upload-quarter {
    width:25%;
    float:left;
    box-sizing: border-box; 
    padding:10px;
}
.upload-three-quarter {
    width: 75%; 
    float: left; 
    box-sizing: border-box; 
    padding: 10px;
}
.upload-third {
    width:37.5%;
    float:left;
    box-sizing: border-box; 
    padding:10px;
}
.upload-three {
    width:33.3%;
    float:left;
    box-sizing: border-box; 
    padding:10px;
}
input{
    background:#fff;
    color:#333;
    margin-bottom:10px;
}
textarea{
    background:#fff;
    color:#333;
    margin-bottom:10px;
}
select{
    background:#fff;
    color:#333;
    margin-bottom:10px;
}
label {
    color:#333;
}
body.dark-mode input {
    background-color: #333;
    color:#fff;
}
body.dark-mode textarea {
    background-color: #333;
    color:#fff;
}
body.dark-mode select {
    background-color: #333;
    color:#fff;
}
body.dark-mode label {
    color:#fff;
}
.custom-third i{
    color:#7f00ff;
}
body.dark-mode .custom-third i{
    color:#00c6ff;
}
.custom-third h2{
    color:#333;
}
body.dark-mode .custom-third h2{
    color:#fff;
}
.custom-third p{
    color:#333;
}
body.dark-mode .custom-third p{
    color:#fff;
}
.custom-third small{
    color:#333!important;
}
body.dark-mode .custom-third small{
    color:#fff!important;
}
/* Styling for the uploading container */
.uploading-container {
    background-color: #f6f6f6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    width: 100%;
    margin: 0 auto;
}

#video-uploading p {
    margin: 0;
    font-size: 16px;
    color: #333;
}
#loading-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}
.video-check-mark {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-container {
    position: relative;
    display: inline-block;
}
#thumbnail-preview {
    width: 100%; 
    height: auto;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius:10px;
}

/* Tablets (Portrait and Landscape) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .upload-quarter {
        width:50%;
    }
    .upload-three-quarter {
        width: 50%; 
    }
    .upload-third {
        width:50%;
    }
    
}
/* Mobile devices */
@media screen and (max-width: 768px) {
    .upload-quarter {
        width:100%;
        padding:0px;
    }
    .upload-three-quarter {
        width: 100%; 
        padding:0px;
    }
    
    .upload-third {
        width:100%;
        padding:0px;
        margin-bottom:10px;
    }
    .upload-three {
        width:100%;
        padding:0px;
    }
}