/* Define a font stack with fallbacks */
* {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

/* Example of applying different fonts to specific elements */
h1, h2, h3 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

p {
  font-family: Verdana, Arial, sans-serif;
}

body {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0px;
  flex-direction: column;
}
body .main-content {
  width: 100%;
}
body .floating-logo-menu {
  width: 100%;
  display: flex;
}
body .floating-logo-menu .top-logo {
  flex: 1;
}
body .floating-logo-menu .button-expand {
  width: 40px;
}
body .floating-logo-menu .button-expand button {
  background: none;
  height: 100%;
  background: #fff;
  box-shadow: none;
  border: none;
}
body .sidebar {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: -100%; /* Initially off-screen */
  width: 100%;
  height: 100%;
  display: flex;
  transition: left 0.3s ease;
}
body .sidebar .sidebar-content {
  width: 300px;
  background-color: #333;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .sidebar .sidebar-content .user-details-wrapper {
  flex: 1;
}
body .sidebar .sidebar-content .user-details-wrapper .user-details {
  display: flex;
  gap: 10px;
  margin: 20px 0px 0px 35px;
  align-items: center;
}
body .sidebar .sidebar-content .user-details-wrapper .user-details .avatar {
  justify-content: center;
}
body .sidebar .sidebar-content .user-details-wrapper .user-details .name {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
body .sidebar .sidebar-content .user-details-wrapper .user-details .email {
  font-size: 12px;
}
body .sidebar .sidebar-content ul {
  margin: 0px;
  padding-bottom: 30px;
}
body .sidebar .sidebar-content ul li {
  list-style: none;
}
body .sidebar .sidebar-content ul li a {
  color: #ffffff;
  list-style: none;
  display: flex;
  gap: 10px;
}
body .sidebar .sidebar-content ul li a svg {
  width: 15px;
}
body .sidebar .sidebar-content ul li a svg path {
  fill: #FFFFFF;
}
body .sidebar .empty-side {
  content: " ";
  height: 100%;
  background: rgba(0, 0, 0, 0);
  flex: 1;
}
body .sidebar.open {
  left: 0; /* Slide in from the left */
}

.top-logo {
  background-image: url("top-logo.jpeg");
  background-size: contain;
  height: 100px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFFFF;
}

.new-post {
  display: flex;
  gap: 20px;
}

.new-post .button {
  width: 100%;
  flex: 1;
}

.container {
  max-width: 600px;
  background-color: #d0b39d;
  border-radius: 0px;
  display: none;
  width: 100%;
}

.container.active {
  display: block;
}

.camera {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.camera video {
  width: calc(100% - 30px);
  width: calc(100% - 30px);
  height: 271px;
  margin: auto;
  border-radius: 5px;
  border: 3px solid #bd3640;
  margin: 20px auto;
  background: #000000;
  transform: scaleX(-1);
}

.captured-picture img {
  width: calc(100% - 30px);
  border: 3px solid #bd3640;
  max-height: 271px;
  display: flex;
  /* padding: 30px; */
  border-radius: 5px;
  margin: 20px auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: #000;
}

#video {
  border-radius: 5px;
}

.feed {
  margin-top: 0px;
}

textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  margin-bottom: 10px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #bd3640;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #bd3640;
  border: 1px solid #efefef;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.floating-button {
  position: fixed;
  top: 90%;
  right: 20px;
  width: 50px;
  height: 50px;
  border: 1px solid #bd3640;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bd3640;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.floating-button svg {
  width: 40px;
}

.floating-button svg, #show-feed-btn svg {
  fill: #FFFFFF;
}

#show-feed-btn svg {
  width: 15px;
}

#show-feed-btn {
  display: flex;
  gap: 10px;
  border-radius: 0px;
}

#caption-form {
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
}

#caption-form textarea {
  border: 1px solid rgba(239, 239, 239, 0.937254902);
  border-radius: 10px;
  width: auto;
}

.container.capture-selfie {
  min-height: 100vh;
  min-width: 100%;
}

#take-another {
  display: none;
}

#capture-btn, #caption-form button, #take-another {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin: auto;
}

#capture-btn svg, #take-another svg {
  fill: #FFFFFF;
  width: 25px;
}

.post {
  border: 1px solid #efefef;
  margin-bottom: 20px;
  padding: 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 10px 15px 30px 15px;
  background: #FFFFFF;
  position: relative;
}
.post .post-menu {
  position: absolute;
  right: 0px;
  top: 10px;
  width: 50px;
}
.post .post-menu button {
  background: none;
  padding: 0px;
  margin: 0px;
}
.post .post-menu button svg {
  width: 16px;
}
.post .post-menu button svg path {
  fill: #666;
}

.top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar img {
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%; /* Ensures round avatar */
  background-color: rgba(239, 239, 239, 0.937254902);
}

.user-info {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.user-info .mins {
  font-size: 12px;
  color: #888888;
}

.caption {
  margin-bottom: 10px;
}

.post-image img {
  max-width: 100%; /* Ensure images don't overflow their container */
}

.feed-container {
  height: calc(100vh - 100px);
  overflow: auto;
}

.container.login {
  min-height: 100vh;
}
.container.login .login-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: calc(100% - 30px);
  margin: 40px auto;
  justify-content: center;
  flex-direction: column;
}
.container.login .login-container .login-message {
  display: none;
  background-color: #f0f0f0; /* Background color */
  border: 1px solid #ccc; /* Border */
  padding: 10px; /* Padding inside the element */
  margin-bottom: 20px; /* Margin bottom for spacing */
  color: #333; /* Text color */
  font-family: Arial, sans-serif; /* Font family */
  font-size: 14px; /* Font size */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
}
.container.login .login-container .login-message.active {
  display: block;
}
.container.login .login-container form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}
.container.login .login-container form .form-group {
  width: 100%;
}
.container.login .login-container form .form-group input {
  width: 100%;
  border-radius: 5px;
  height: 30px;
}
.container.login .login-container h2 {
  text-align: center;
  margin-bottom: 0px;
  margin: 0px;
}
.container.login .login-container .form-group .forgot-password {
  padding-top: 10px;
  font-size: 12px;
  color: #bd3640;
  text-decoration: none;
  text-align: right;
  display: block;
  text-align: right;
}
.container.login .login-container .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.container.login .login-container .form-group input[type=text],
.container.login .login-container .form-group input[type=password],
.container.login .login-container .form-group input[type=email] {
  width: calc(100% - 20px);
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.container.login .login-container button {
  width: 100%;
  background-color: #bd3640;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}
.container.login .login-container button:hover {
  background-color: #bd3640;
}
.container.login .login-container .login-bottom {
  display: flex;
  gap: 5px;
  font-size: 13px;
  color: #666;
  margin: 10px;
}
.container.login .login-container .login-bottom a {
  color: #bd3640;
  text-decoration: none;
}

/* Modal background */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content .button-container {
  display: flex;
  gap: 10px;
}
.modal-content .button-container .btn-no {
  background-color: #aaa;
}

.streaks-count {
  padding: 10px;
  background: #FFFFFF;
  border-top: 2px solid #efefef;
  border-bottom: 2px solid rgba(239, 239, 239, 0.937254902);
  color: #444;
}
.streaks-count h3 {
  margin: 0px;
  margin-bottom: 5px;
}
.streaks-count .count {
  display: flex;
  align-items: center;
  gap: 10px;
}
.streaks-count .count .logo-small img {
  width: 40px;
}
.streaks-count .count .day {
  flex: 1;
}
.streaks-count .count .icon {
  width: 25px;
}/*# sourceMappingURL=styles.css.map */