html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating>.form-control-plaintext:focus::placeholder,
.form-floating>.form-control:focus::placeholder {
  text-align: start;
}

/* Interaction Buttons Styles */
.interaction-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.interaction-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
}

.interaction-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.interaction-btn.liked {
  background: rgba(24, 119, 242, 0.3);
  color: #1877f2;
}

.interaction-btn.saved {
  background: rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.interaction-count {
  font-size: 11px;
  opacity: 0.8;
  margin-left: 3px;
}

/* Share Dropdown */
.share-dropdown {
  position: relative;
  display: inline-block;
}

.share-dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 100;
  margin-bottom: 10px;
  overflow: hidden;
}

.share-dropdown:hover .share-dropdown-content {
  display: block;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
  font-size: 13px;
}

.share-option:hover {
  background: #f5f5f5;
}

.share-option i {
  width: 20px;
}

/* Toast Message */
.toast-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  z-index: 9999;
  font-size: 14px;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}