/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
}

.container {
  max-width: 960px;
}

.pricing-header {
  max-width: 700px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
}

#text-field-container {
  border-radius: 20px;
  height: 40px;
  border-style: solid;
  border-color: #bec3c9;
  border-width: 2px;
  color: #444950;
  align-self: center;
}

#add-blog-link {
  text-decoration: none;
  color: inherit;
}

.flex-container {
  display: flex;
}

.comment-text-field {
  display: flex;
  align-items: center;
  border-radius: 20px;
  height: 30px;
  border-style: solid;
  border-color: #bec3c9;
  border-width: 2px;
  color: #444950;
  align-self: center;
}

@media screen and (max-width: 809px) {
  .icon-label {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  #grid-container {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
  }

  .item-a {
    grid-column: 1/3;
  }

  .item-b {
    grid-column: 3/11;
  }

  .item-c {
    grid-column: 11/13;
  }
}

@media screen and (max-width: 890px) {
  #grid-container-2 {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    align-items: center;
    justify-items: stretch;
    column-gap: 15px;
  }

  .item-d {
    grid-column: 1/2;
    justify-self: center;
  }

  .item-e {
    grid-column: 2/13;
    place-self: center stretch;
  }
}

.item-e {
  display: flex;
  align-items: center;
}

.item-a.like-btn:hover,
.item-c.share-btn:hover,
.meat-balls-icon:hover {
  background-color: #ebedf0;
  border-radius: 20px;
}

.meat-balls-icon {
  border-radius: 20px;
  width: 30px;
}

textarea.no-scrollbars {
  overflow: hidden;
  outline: none;
}


/* Login Page Specific Styling */
.login-container {
    max-width: 450px;
    margin: 4rem auto;
}

.login-card {
    padding: 2.5rem;
    border-radius: 1rem;
    background-color: var(--bs-tertiary-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Brand Buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    transition: transform 0.2s ease;
    border: none;
    height: 48px;
}

.btn-social:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-github {
    background-color: #24292e;
    color: white !important;
}

.btn-google {
    background-color: #ffffff;
    color: #444 !important;
}

/* Separator Line */
.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #6c757d;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #444;
}

.login-separator:not(:empty)::before {
    margin-right: .5em;
}

.login-separator:not(:empty)::after {
    margin-left: .5em;
}