.frame-vid {
  width: 100%;
  max-width: 540px;
  margin-top: 2em;
  height: fit-content;
  box-sizing: border-box;
  /* background-color: green; */
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #ddd;
  z-index: 1;
}

.toolbar {
  width: 100%;
  height: 60px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mac-buttons {
  /* position: absolute; */
  left: 20px;
  display: flex;
  gap: 8px;
}

.mac-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red {
  background-color: #ff605c;
}

.yellow {
  background-color: #ffbd44;
}

.green {
  background-color: #00ca4e;
}

.addres-bar {
  border: none;
  /* padding: 8px 16px; */
  font-size: 16px;
  border-radius: 20px;
  width: 200px;
  text-align: center;
  pointer-events: none;
  background-color: #f1f1f1;
}

.nav-arrows {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: peru; */
  padding: 0 1em;
  font-size: 18px;
  margin-right: 1em;
  color: #444;
  cursor: pointer;
}

.f-screen {
  position: relative;
  /* height: 100%;
    width: 380px; */
  /* padding: 1em; */
  /* height: 100vh; */
  /* background: url('bg.jpg') no-repeat center center/cover; */
  display: flex;
  color: white;
}

.play-button {
  background-color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: #ddd;
}

.play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid black;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
