.container {
    width: 1200px;
    min-height: 800px;  /* change height to min-height */
    margin: auto;
}

   


.content {
    display: flex;
    flex-wrap: wrap; /* add this to allow wrapping */

    height: 100%;

}

.video-column {
	overflow-y: auto; /* allow vertical scrolling if needed */
    flex: 0.6;
    margin-right: 5%;
    overflow: visible; /* Changed to visible for debugging */
}


.controls-column {
	overflow-y: auto; /* allow vertical scrolling if needed */
    overflow: visible;   /* Changed to visible for debugging */
    justify-content: start; /* Change to start for debugging */
    max-width: 400px; 
}

.canvas-size-controls {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.size-btn {
    transition: background-color 0.3s;
}

.size-btn:hover {
    background-color: #111;
}



.knob {

    width: 70px ;

    height: 70px ;

     

   

}

.canvas {
    width: 100%;  /* Modify this */
    height: auto; /* Add this */
    margin: auto;
}
@media (max-width: 600px) {

    .knob {

        width: 20px;

        height: 20px;

    }

}



.video-display {
    height: 60%; /* Adjust based on your preference */
    width: 100%; /* Full width of the container */
}

.knobs-column {

  display: flex;

  justify-content: space-between;

}



.knob-container {

  display: flex;

  flex-direction: column;

  align-items: center;

}




	
		/* Your existing CSS */
.navbar-brand img {
    max-height: 50px;
}

body {
    overflow: auto; /* changed from hidden */
    background-color: #15171a;
    font-family: Arial, sans-serif;
    color: #fff;
}

.navbar {
    position: relative;
    height: 70px; /* New property */
    overflow: visible;
}

.navbar-nav {
    padding-right: 15vw;
}

.navbar .icon img {
    width: 10vw;
    height: 10vw;
    min-width: 70px;
    max-width: 260px;
    min-height: 70px;
    max-height: 260px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1; /* Add this line */
}


.navbar {
    background-color: #181a1d;
}

.navbar .navbar-brand, .navbar .nav-link {
    color: #ffffff;
}

.content-div {
    position: relative; /* changed from absolute */
    top: 70px;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 70px); /* take the full height minus the top offset */
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    
    display: flex; /* Convert this to a flex container */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}


.navbar:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #101214; /* Modified color code */
    z-index: 0; /* Add this line */
}


.section {
    margin-top: 70px; /* New property */
}

/* Your remaining CSS */

    .background-image {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
 	    margin-top: 0;
    	margin-bottom: 0;
    }
		#playButton {
        display: none;
        position: fixed;
        bottom: 10px;
        z-index: 2;
    }
    .section {
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }
    .btn {
        background-color: #15171a;
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        font-size: 14px;
        border-radius: 5px;
    }
    .video-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        overflow: auto;
    }
    .video-item {
        margin-bottom: 20px;
        flex: 1;
    }
	.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Increasing modal size */
}

.modal-content iframe {
    width: 100%;
    height: 500px; /* Adjust this to your liking */
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .background-image {
    background-size: cover;
    background-position: center;
    height: auto; /* adjust as per your need */
  }
  /* rest of the CSS modifications for mobile screens */
}
	
	  .faqs {
            background-color: #111;
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #34a1eb; /* Neon blue border */
            margin: 20px;
        }
        .faqs h3 {
            color: #34a1eb; /* Neon blue text */
            font-size: 20px;
            margin-bottom: 10px;
        }
        .faqs p {
            color: #ddd; /* Light grey text */
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .faqs ol {
            color: #ddd; /* Light grey text */
        }
		
		.upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #fff;
    height: 200px;
    cursor: pointer;
    position: absolute;
    width: 100%;
    bottom: 25%; /* position at the bottom */
}

#upload-button {
    width: 100%; /* make image responsive */
    height: auto; /* maintain aspect ratio */
    max-width: 1000px; /* limit maximum width */
    max-height: 600px; /* limit maximum height */
}

.vertical-control {
    display: flex;
    flex-direction: column;
}

.mt-5 {
    margin-top: 30%;
}


