body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: row;
  background-color: #e9e9e9;
}

.left_bar {
  flex: 1;
  height: 100vh;
  padding-top: 20px;
  padding-left: 35px;
  padding-right: 0px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.left_bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #e9e9e9 10%, transparent 100%);
}

.left_bar h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.main_canvas {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-right: 20px;
  height: 100vh;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.cameraCanvas {
  height: 100%;
  aspect-ratio: 4/3;
  width: auto;
  border-radius: 40px;
  background-color: black;
}

#cameraSelect {
  position: absolute;
  height: 50px;
  top: 50px;
  right: 70px;
  padding: 8px 40px 8px 12px;
  font-size: 16px;
  font-family: inherit;
  border-radius: 999px;
  border: 2px solid rgb(224, 224, 224);
  background-color: #ffffff;
  color: #2c3e50;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%232c3e50" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.image-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;   
  margin-bottom: 30px; 
}
.image-scroll-container::-webkit-scrollbar {
  display: none;
}

.image-strip {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.thumbnail {
  width: 280px;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.add-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: semibold;
  color: #aaa;
  background-color: #f9f9f9;
  border: 2px dashed #ccc;
  text-align: center;
  flex-direction: column;
  scroll-snap-align: start;
}


.toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  height: 100px;
  margin-top: 30px;
  border-radius: 35px;
  background-color: #ffffff;
}

.toolbar-cameraControl{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.toolbar-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  width: 85%;
  margin: 20px;
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: start;
  align-items: start;
}

.toolbar-shotButton {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d5d5d5;
  border: rgb(235, 235, 235) 5px solid;
  text-align: center;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toolbar-Button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e7e7e7;
  border:none;
  margin: 20px;display: flex;
  justify-content: center;
  align-items: center;
}

