body {
    font-size:100%;
}

p {
    font-size: 1em;
}

* {
  box-sizing: border-box;
}

.oc-container {
    margin: 0;
    padding: 0;
    border: none;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
}

.banner-style {
    border-left: 10px;
    height: 140px;
}


@media all and (max-width: 768px) {
  body {
      font-size: 150%;
  }
  [class*="col-"] {
    width: 100%;
  }

  .banner-container {
    display: flex;
    justify-content: center;
    padding-left: 10px;
    width: 200px; /* Set your desired container width */
    height: 150px; /* Set your desired container height */
    background-position: 1000px 0; /* Adjust the left positioning as needed */
    background-repeat: no-repeat;
  }

}


@media not all and (max-width: 768px) {
  .banner-container {
    display: flex;
    justify-content: center;
    width: 100%; /* Set your desired container width */
    height: 150px; /* Set your desired container height */
    background-position: 0 0; /* Adjust the left positioning as needed */
    background-repeat: no-repeat;
  }
}

.auth-button {
        height: 50px;
        width: 50px;
        text-align: center;
        padding: 0px;
        margin: 0px;
        border: 1px;
        border-style: solid;
        background: white;
        color: black;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.header {
  background-color: #9933cc;
  color: #ffffff;
  padding: 15px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: #0099cc;
}

.aside {
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}


.popover {
    border: none;
    padding: 0;
}

.btn-group .btn {
        border-radius: 0 !important; /* Remove rounded corners for all buttons */
    }

.btn-group .btn:first-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.btn-group .btn:last-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}


.icon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Adjust the spacing as needed */
}
.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon {
    font-size: 24px; /* Adjust icon size as needed */
    margin-bottom: 20px;
}

.oc-member {
    --fa-primary-color: rgb(23,96,248);
    --fa-secondary-color: rgb(148,188,251);
}

.oc-manager {
    --fa-primary-color: rgb(43, 138, 62);
    --fa-secondary-color: rgb(170, 227,75);
}

.oc-owner {
    --fa-primary-color: red;
    --fa-secondary-color: gold;
}

square-card {
  position: relative;
}

.square-card::before {
  content: '';
  display: block;
  padding-top: 100%;  /* Aspect ratio 1:1 */
}

.card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps the image aspect ratio */
}

.card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.card-title {
    text-align: center;
}

.carousel-container {
    padding: 0 20px; /* Adjust the 20px to increase or decrease the space */
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 24px; /* Enlarges the arrow */
    color: #333; /* Changes the arrow color */
    background: white; /* Background color */
    border-radius: 50%; /* Makes it circular */
    padding: 10px; /* Adds some padding around the arrow */
    border: 1px solid #ddd; /* Adds a border */
    /* Add more styling as needed */
}

.footer {
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}



/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
