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;
}

/* Table enhancements for SocialFeed */
.table-responsive {
  overflow-x: auto;
}

.table th {
  white-space: nowrap;
  font-weight: 600;
  border-top: none;
}

.table td {
  vertical-align: middle;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table td.text-truncate {
  max-width: 200px;
}

.table td:nth-child(4) .text-truncate {
  max-width: none;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Ensure container uses full width */
.container-fluid {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Responsive table improvements */
@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.875rem;
  }
  
  .table td, .table th {
    padding: 0.5rem;
  }
}
