body {
    background-color: #202124;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    height: 100vh;
    margin:0;
}

/* CSS styles omitted for brevity */
.navbar {
    display: flex;
    align-items: center;
    justify-content: left;
    gap:10px;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 10px;
    gap:10px;
}

.logo {
    width: 50px;
    height: 50px;
    /* Adjust the width as needed */
}

.top-division {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 10px 10px 10px;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    gap: 5px;
    margin: auto;
}

.row-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    width: 100%;
    justify-content: left;
    align-items: center;
    box-sizing: border-box;
    gap: 20px;
}

.textarea-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    width: 100%;
    justify-content: left;
    align-items: center;
    box-sizing: border-box;
    gap: 10px;
}

.left-container {
    flex:1;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #25262b;
    height: 100%;
  }

  .right-container {
    flex: 2;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }

.col-container {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    justify-content: space-between;
    align-items: left;
    gap: 20px;
}

.input-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-bottom: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    gap: 10px;
}

.drop-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    box-sizing: border-box;
    gap: 5px;
    overflow: auto;
    width: auto;
}


.image-container {
    display: flex;
    flex-wrap: wrap;
}

.image-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.image-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-wrapper img {
    max-width: 400px;
    margin: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dividing-line{
    width: 100%;
    box-sizing: border-box;
    border: none; /* Remove the default border */
    height: 1px; /* Set the height of the line */
    background-color: #525252; /* Set the color of the line */
    margin: 20px 0; /* Add some margin above and below the line */
    align-items: center;
}

.select-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.label-style {
    /* Align label to the left */
    text-align: left;
    font-size: 14px;
    color: #ffffff;
    /* Label text color */
    display: block;
    justify-content: left;
}

.dropdown {
    padding: 10px 15px;
    background-color: #1f1f1f;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box; 
    cursor: pointer;
} 

/* Additional styles for the options */
 .dropdown option {
    background-color: #111111;
    color: #fafafa;
}

/* Existing CSS styles */

/* Existing CSS styles */

/* Add these styles for the sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -500px; /* Set initial position outside the viewport */
    width: 500px;
    height: 100%;
    background-color: #3a3b41;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
  }
  
  #closeSidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
  }
  