
/* ===== MOBILE-FIRST CSS FRAMEWORK ===== */

/* Base styles */
body { 
  background: #f8f9fa; 
  font-size: 14px;
  line-height: 1.5;
}

/* Mobile-first container */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Brand colors */
.navbar .navbar-brand .brand-soil { color: #ffb90f; }
.navbar .navbar-brand .brand-tech { color: #1161d2; }

/* ===== MOBILE NAVIGATION ===== */
.navbar {
  backdrop-filter: saturate(180%) blur(6px);
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile navigation menu */
.navbar-collapse {
  margin-top: 1rem;
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-link:hover {
  background-color: rgba(17, 97, 210, 0.1);
  color: #1161d2;
}

.nav-link.active {
  background-color: #1161d2;
  color: white;
}

/* ===== MOBILE CARDS ===== */
.card {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.card-body {
  padding: 1rem;
}

/* ===== MOBILE DASHBOARD ===== */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}

/* ===== MOBILE TABLES ===== */
.mobile-table {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Low stock warning styles */
.table-danger {
  background-color: #f8d7da !important;
  border-left: 4px solid #dc3545;
}

.table-danger td {
  background-color: #f8d7da !important;
}

.table-danger:hover {
  background-color: #f5c6cb !important;
}

.table-danger:hover td {
  background-color: #f5c6cb !important;
}

/* Low stock text styling */
.text-danger {
  color: #dc3545 !important;
  font-weight: 600;
}

/* Low stock badge */
.low-stock-badge {
  background-color: #dc3545;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}

/* Loading indicator */
.spinner-border {
  width: 2rem;
  height: 2rem;
  border: 0.25rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* Search clear button */
.clear-btn {
  z-index: 10;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  color: #6c757d;
  transition: all 0.2s ease;
}

.clear-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #dc3545;
  transform: translateY(-50%) scale(1.1);
}


.table-mobile {
  width: 100%;
  border-collapse: collapse;
}

/* Documents page styles */
.docs-tabs .nav-pills .nav-link {
  border-radius: 0.5rem;
  margin: 0 0.25rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.docs-tabs .nav-pills .nav-link:hover {
  background-color: #f8f9fa;
  border-color: #e9ecef;
}

.docs-tabs .nav-pills .nav-link.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: white;
}

.upload-section .card {
  border: 2px dashed #dee2e6;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.upload-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.file-input-wrapper {
  position: relative;
  flex: 1;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px dashed #6c757d;
  border-radius: 0.5rem;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
  font-weight: 500;
  color: #6c757d;
}

.file-input-label:hover {
  border-color: #0d6efd;
  background-color: #e3f2fd;
  color: #0d6efd;
}

.documents-list {
  max-height: 500px;
  overflow-y: auto;
}

.document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  transition: background-color 0.2s ease;
}

.document-item:hover {
  background-color: #f8f9fa;
}

.document-item:last-child {
  border-bottom: none;
}

.document-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.document-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.document-details {
  flex: 1;
  min-width: 0;
}

.document-name {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
  word-break: break-word;
  line-height: 1.4;
}

.document-meta {
  font-size: 0.875rem;
  color: #6c757d;
}

.document-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: #6c757d;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state h5 {
  margin-bottom: 0.5rem;
  color: #495057;
}

/* Mobile optimizations for documents */
@media (max-width: 768px) {
  .docs-tabs .nav-pills .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    margin: 0 0.125rem;
  }
  
  .upload-mobile {
    gap: 0.75rem;
  }
  
  .file-input-label {
    padding: 0.75rem;
    min-height: 50px;
    font-size: 0.875rem;
  }
  
  .document-item {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .document-info {
    width: 100%;
  }
  
  .document-actions {
    width: 100%;
    justify-content: flex-end;
  }
  
  .document-actions .btn {
    flex: 1;
    max-width: 80px;
  }
  
  .document-name {
    font-size: 0.875rem;
  }
  
  .document-meta {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .docs-tabs .nav-pills {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .docs-tabs .nav-pills .nav-link {
    margin: 0;
    text-align: center;
  }
  
  .document-actions {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .document-actions .btn {
    flex: 1;
    min-width: 60px;
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
  }
}

/* Admin users page styles */
.stats-card {
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.stats-card:hover {
  transform: translateY(-2px);
}

.stats-card .card-body {
  padding: 1.5rem 1rem;
}

.stats-card i {
  font-size: 2rem;
}

.stats-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

.users-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.user-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.user-card.inactive {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fff3cd 0%, #ffffff 100%);
}

.user-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #f1f3f4;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.user-avatar i {
  font-size: 1.5rem;
  color: white;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.user-username {
  margin: 0 0 0.5rem 0;
  color: #6c757d;
  font-size: 0.875rem;
}

.user-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.user-badges .badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

.user-actions {
  flex-shrink: 0;
}

.user-details {
  padding: 1.5rem;
  background: #f8f9fa;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.detail-item i {
  width: 20px;
  margin-right: 0.75rem;
  text-align: center;
}

.detail-item span {
  color: #495057;
  word-break: break-word;
}

.user-roles {
  padding: 1.5rem;
  background: white;
}

.role-section {
  margin-bottom: 1.5rem;
}

.role-section:last-child {
  margin-bottom: 0;
}

.role-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-form {
  margin-bottom: 0;
}

.role-form .input-group {
  display: flex;
  gap: 0.5rem;
}

.role-form .form-select {
  flex: 1;
}

.role-form .btn {
  flex-shrink: 0;
  width: 40px;
  padding: 0.375rem;
}

/* Mobile optimizations for admin users */
@media (max-width: 768px) {
  .stats-card .card-body {
    padding: 1rem 0.75rem;
  }
  
  .stats-card i {
    font-size: 1.5rem;
  }
  
  .stats-card h4 {
    font-size: 1.25rem;
  }
  
  .user-header {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .user-avatar {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }
  
  .user-avatar i {
    font-size: 1.25rem;
  }
  
  .user-info {
    width: 100%;
  }
  
  .user-actions {
    align-self: flex-end;
  }
  
  .user-details {
    padding: 1rem;
  }
  
  .user-roles {
    padding: 1rem;
  }
  
  .role-form .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .role-form .btn {
    width: 100%;
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  .stats-card {
    margin-bottom: 1rem;
  }
  
  .user-card {
    margin-bottom: 1rem;
  }
  
  .detail-item {
    font-size: 0.8rem;
  }
  
  .detail-item i {
    width: 16px;
    margin-right: 0.5rem;
  }
  
  .user-badges .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

.table-mobile th {
  background: #f8f9fa;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #495057;
  border-bottom: 1px solid #dee2e6;
}

.table-mobile td {
  padding: 0.75rem;
  border-bottom: 1px solid #f1f3f4;
  font-size: 0.875rem;
}

.table-mobile tr:last-child td {
  border-bottom: none;
}

/* Mobile table actions */
.table-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-mobile {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE FORMS ===== */
.form-mobile {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.form-control-mobile {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
  min-height: 48px;
}

.form-control-mobile:focus {
  border-color: #1161d2;
  box-shadow: 0 0 0 0.2rem rgba(17, 97, 210, 0.25);
}

.form-label-mobile {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* ===== MOBILE BUTTONS ===== */
.btn-mobile-primary {
  background: #1161d2;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-mobile-primary:hover {
  background: #0d4aa3;
  color: white;
  box-shadow: 0 4px 12px rgba(17, 97, 210, 0.3);
}

.btn-mobile-secondary {
  background: #6c757d;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-mobile-success {
  background: #198754;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-mobile-warning {
  background: #ffc107;
  border: none;
  color: #212529;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-mobile-danger {
  background: #dc3545;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ===== MOBILE SEARCH ===== */
.search-mobile {
  position: relative;
  margin-bottom: 1rem;
}

.search-mobile input {
  padding-left: 2.5rem;
  padding-right: 1rem;
  height: 48px;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.search-mobile .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.125rem;
}

/* ===== MOBILE EXPERIMENT CARDS ===== */
.experiment-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-left: 4px solid #1161d2;
}

.experiment-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.experiment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.experiment-status {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-done {
  background: #d1e7dd;
  color: #0f5132;
}

.status-processing {
  background: #fff3cd;
  color: #664d03;
}

.status-overdue {
  background: #f8d7da;
  color: #721c24;
}

.status-pending {
  background: #cff4fc;
  color: #055160;
}

.status-pause {
  background: #e2e3e5;
  color: #41464b;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Extra small devices (phones, 320px and up) */
@media (max-width: 575.98px) {
  /* Compact floating-style menu button on mobile */
  .navbar-toggler {
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: absolute;
    right: 10px;
    top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-toggler i { font-size: 18px; color: #212529; }
  .navbar-brand { margin-right: auto; }
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .card-body {
    padding: 0.75rem;
  }
  
  .form-mobile {
    padding: 1rem;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .stat-card {
    padding: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .experiment-card {
    padding: 0.75rem;
  }
  
  .experiment-title {
    font-size: 1rem;
  }
  
  .experiment-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .table-mobile th,
  .table-mobile td {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  
  .btn-mobile {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    min-height: 32px;
  }
  
  .btn-mobile-primary,
  .btn-mobile-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 44px;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .nav-link {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  
  .search-mobile input {
    height: 44px;
    font-size: 0.875rem;
  }
  
  .form-control-mobile {
    min-height: 44px;
    font-size: 0.875rem;
  }
  
  .table-actions {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .table-actions .btn-mobile {
    width: 100%;
    justify-content: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .table-mobile th,
  .table-mobile td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }
  
  .btn-mobile {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    min-height: 36px;
  }
  
  .table-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .dashboard-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .container-fluid {
    max-width: 1200px;
  margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .navbar-nav {
    gap: 0;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0;
  }
  
  .table-mobile th,
  .table-mobile td {
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .btn-mobile {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 40px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .table-mobile {
    font-size: 0.875rem;
  }
  
  .table-mobile th,
  .table-mobile td {
    padding: 1rem;
  }
  
  .form-mobile {
    padding: 2rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-fluid {
    max-width: 1400px;
  }
  
  .dashboard-stats {
    gap: 1.5rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
}

/* Landscape orientation optimizations */
@media (orientation: landscape) and (max-height: 500px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .card-body {
    padding: 0.75rem;
  }
  
  .form-mobile {
    padding: 1rem;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  
  .stat-card {
    padding: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn-mobile,
  .btn-mobile-primary,
  .btn-mobile-secondary,
  .btn-mobile-success,
  .btn-mobile-warning,
  .btn-mobile-danger {
    border-width: 0.5px;
  }
  
  .card {
    border-width: 0.5px;
  }
  
  .table-mobile th,
  .table-mobile td {
    border-width: 0.5px;
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  .card {
    background-color: #2d3748;
    color: #e2e8f0;
  }
  
  .table-mobile th {
    background-color: #4a5568;
    color: #e2e8f0;
  }
  
  .table-mobile td {
    background-color: #2d3748;
    color: #e2e8f0;
    border-color: #4a5568;
  }
  
  .form-control-mobile {
    background-color: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .form-control-mobile:focus {
    background-color: #2d3748;
    border-color: #1161d2;
    color: #e2e8f0;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-mobile-center { text-align: center; }
.text-mobile-left { text-align: left; }
.text-mobile-right { text-align: right; }

.mb-mobile-1 { margin-bottom: 0.25rem; }
.mb-mobile-2 { margin-bottom: 0.5rem; }
.mb-mobile-3 { margin-bottom: 1rem; }
.mb-mobile-4 { margin-bottom: 1.5rem; }
.mb-mobile-5 { margin-bottom: 3rem; }

.p-mobile-1 { padding: 0.25rem; }
.p-mobile-2 { padding: 0.5rem; }
.p-mobile-3 { padding: 1rem; }
.p-mobile-4 { padding: 1.5rem; }
.p-mobile-5 { padding: 3rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.3s ease-out;
}

/* ===== TOUCH INTERACTIONS ===== */
.touch-target {
  min-height: 44px;
  min-width: 44px;
}

/* Removed bounce/scale effects on touch */
.btn-mobile:active {
  transform: none;
}

.card:active {
  transform: none;
}
