.oct-header {
  width: 100%;
  height: 10vh;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  align-items: center;
  z-index: 9999;
  border: #000000;
}
.oct-offer-card-container {
position: relative;
background-color: #adb5bd;
width: 100%;
height: 80vh; /* Full height of the viewport */
overflow: hidden; /* Hide overflow content if necessary */
} 
/* admin side css end */
.oct-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.oct-popup-container .oct-show-text {
  justify-content: space-evenly;
}

.oct-popup-container p,
.oct-popup-container h3,
.oct-popup-container small {
  margin: 0;
}

.oct-close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.oct-offer-button {
  width: 100%;
  background-color: blue;
  color: white;
  padding: 16px 28px;
  border: none;
  border-radius: 4px;
  margin-top: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.oct-horizontal-card {
  width: auto;
  max-height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px;
  position: relative;
}

.oct-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oct-offer-popup-small .oct-horizontal-card {
  padding: 0;
}

.oct-horizontal-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  max-width: 100%;
  object-fit: cover;
}

.oct-horizontal-card .oct-close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  background: black;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  border-radius: 0;
  padding: 0;
}

.oct-horizontal-card .oct-details {
  display: flex;
  flex-direction: column;
  margin: 0 16px;
  flex: 3;
  gap: 1px;
  align-items: flex-start;
  text-align: left;
}

.oct-offer-popup-small{
  height: 70px;
  width: 70px;
  border-radius: 50%;
  cursor: pointer;
}
.oct-offer-popup-large{
    width: auto;
    height: auto;
}
.oct-common {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    text-align: center;
    transform: translateX(-50%); 
    z-index: 9999;
}
/* specific pos for admin side */
.oct-admin-top-left {
  top: 2%;
  left: 2%;
  transform: translate(0, 0);
}

.oct-admin-top-right {
  top: 2%;
  right: -60%;
  transform: translate(0, 0);
}

.oct-admin-bottom-left {
  bottom: -80%;
  left: 2%;
  transform: translate(0, 0);
}

.oct-admin-bottom-right {
  bottom: -80%;
  right: -60%;
  transform: translate(0, 0);
}
/* Specific position classes */
.oct-top-left {
  top: 15%;
  left: 2%;
  transform: translate(0, 0);
}

.oct-top-right {
  top: 15%;
  right: 2%;
  transform: translate(0, 0);
}

.oct-bottom-left {
  bottom: 2%;
  left: 2%;
  transform: translate(0, 0);
}

.oct-bottom-right {
  bottom: 2%;
  right: 2%;
  transform: translate(0, 0);
}
.oct-details p, .oct-details h3, .oct-details small {
    margin: 0;
}

/* Popup Container */
.oct-popup-container {
  min-width: 400px;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  margin: 20px auto;
}

/* Popup Content */
.oct-popup-content {
  display: flex;
  flex-direction: column; /* Default to vertical */
  align-items: center;
}

.oct-image-section {
  width: 100%;
  text-align: center;
  display: contents;
}

.oct-image-section img {
  max-width: 100%;
  max-height: 250px; 
  width: 100%;
  height: 100%;
}

.oct-content-section {
  text-align: center;
  padding: 32px;
  width: 100%;
  line-height: 1.3;
}

/* Horizontal Layout */
.oct-horizontal-layout .oct-popup-content {
  flex-direction: row;
  align-items: center;
}

.oct-horizontal-layout .oct-popup-content div {
  padding-top: 0;
  padding-bottom: 0;
}

.oct-horizontal-layout .oct-image-section {
  display: flex;
  flex: 2;
  align-items: center;
  justify-content: center;
  max-height: 100%;
}

.oct-horizontal-layout .oct-image-section img{
  min-height: 400px;
}

.oct-horizontal-layout .oct-content-section {
  display: flex;
  flex-direction: column;
  flex: 3;
  justify-content: center;
  min-height: 400px;
  line-height: 1.3;
}
.oct-hide-img .oct-content-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
}

/* timer css */
.oct-timer {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.oct-timer-item {
  display: flex;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px;
  width: 60px;
  height: 50px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
}

.oct-timer-item span {
  font-size: 20px;
  font-weight: bold;
}

.oct-timer-item-label {
  font-size: 12px;
}