/* ========================================
   Virtual Pet Caregiver - Complete Styles
   ======================================== */

/* ===== GENERAL LAYOUT ===== */
.vpc-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 1rem;
}

.vpc-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.vpc-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== TOP PATRONS PAGE ===== */
.vpc-patrons-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.vpc-patrons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vpc-patron-card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.vpc-patron-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.vpc-patron-gold {
  border: 3px solid #FFD700;
}

.vpc-patron-silver {
  border: 3px solid #C0C0C0;
}

.vpc-patron-bronze {
  border: 3px solid #CD7F32;
}

.vpc-patron-rank {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.vpc-rank-icon {
  font-size: 1.5rem;
}

.vpc-rank-number {
  font-weight: 700;
  color: #2c3e50;
}

.vpc-patron-avatar {
  text-align: center;
  margin: 2rem 0 1rem;
}

.vpc-avatar-image {
  border-radius: 50%;
  border: 4px solid #f0f0f0;
}

.vpc-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f0f0f0;
}

.vpc-avatar-initials {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.vpc-patron-info {
  text-align: center;
}

.vpc-patron-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.vpc-patron-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.vpc-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.vpc-stat-primary {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-left: 4px solid #667eea;
}

.vpc-stat-icon {
  font-size: 1.8rem;
}

.vpc-stat-content {
  flex: 1;
  text-align: left;
}

.vpc-stat-label {
  display: block;
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 0.25rem;
}

.vpc-stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
}

.vpc-patron-pets {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
}

.vpc-pets-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.vpc-pet-item {
  text-align: center;
  flex: 0 0 70px;
}

.vpc-pet-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

.vpc-pet-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
}

.vpc-pet-icon {
  font-size: 1.8rem;
}

.vpc-pet-name {
  font-size: 0.7rem;
  color: #7f8c8d;
  margin-top: 0.25rem;
}

/* Ribbon Badge Styling */
.vpc-patron-badge-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.vpc-patron-gold .vpc-patron-badge-ribbon {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a1a;
}

.vpc-patron-silver .vpc-patron-badge-ribbon {
  background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
  color: #1a1a1a;
}

.vpc-patron-bronze .vpc-patron-badge-ribbon {
  background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
  color: white;
}

.vpc-ribbon-text {
  display: block;
  white-space: nowrap;
}

.vpc-patrons-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.vpc-footer-message {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin: 0;
}

/* ===== PETS NEEDS LIST ===== */
.vpc-pets-needs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.vpc-pets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.vpc-pet-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0f0f0;
}

.vpc-pet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: #667eea;
}

.vpc-priority-high {
  border-left: 5px solid #e74c3c;
}

.vpc-priority-medium {
  border-left: 5px solid #f39c12;
}

.vpc-priority-low {
  border-left: 5px solid #3498db;
}

.vpc-pet-header {
  position: relative;
}

.vpc-pet-priority-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.vpc-priority-high .vpc-pet-priority-badge {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
}

.vpc-priority-medium .vpc-pet-priority-badge {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5);
}

.vpc-priority-low .vpc-pet-priority-badge {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.5);
}

.vpc-pet-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.vpc-pet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vpc-pet-card:hover .vpc-pet-image {
  transform: scale(1.1);
}

.vpc-pet-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.vpc-pet-type-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.vpc-pet-info {
  padding: 1.5rem;
  text-align: center;
}

.vpc-pet-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.vpc-pet-nickname {
  font-size: 1.1rem;
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.vpc-pet-age {
  font-size: 0.95rem;
  color: #95a5a6;
}

.vpc-needs-section {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 0 0 20px 20px;
}

.vpc-needs-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vpc-needs-title::before {
  content: '🎯';
  font-size: 1.5rem;
}

.vpc-progress-overview {
  margin-bottom: 1.5rem;
}

.vpc-progress-bar-wrapper {
  width: 100%;
  height: 20px;
  background: #e9ecef;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vpc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  transition: width 0.8s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.vpc-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.vpc-collected,
.vpc-total {
  font-weight: 700;
}

.vpc-needs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vpc-need-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.vpc-need-item:hover {
  border-color: #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
  transform: translateX(5px);
}

.vpc-need-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.vpc-need-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vpc-need-content {
  flex: 1;
}

.vpc-need-name {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.vpc-need-description {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 0.5rem;
}

.vpc-need-value {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.vpc-currency {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.vpc-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #27ae60;
}

.vpc-need-action {
  flex-shrink: 0;
}

.vpc-no-needs {
  text-align: center;
  padding: 2rem;
  color: #7f8c8d;
}

.vpc-no-pets {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.2rem;
  color: #7f8c8d;
}

/* ===== MODAL STYLES ===== */
.vpc-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.vpc-modal.show,
.vpc-modal.active {
  display: flex;
}

.vpc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9998;
}

.vpc-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vpc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.vpc-modal-close:hover {
  background: #e0e0e0;
}

.vpc-modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.vpc-modal-avatar {
  flex-shrink: 0;
}

.vpc-modal-patron-info {
  flex: 1;
}

.vpc-modal-patron-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.vpc-modal-patron-email {
  font-size: 1rem;
  color: #7f8c8d;
  margin: 0;
}

.vpc-modal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.vpc-modal-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.vpc-modal-stat-icon {
  font-size: 2rem;
}

.vpc-modal-stat-content {
  flex: 1;
}

.vpc-modal-stat-label {
  display: block;
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 0.25rem;
}

.vpc-modal-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.vpc-modal-body {
  margin-top: 2rem;
}

.vpc-modal-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.vpc-modal-loading {
  text-align: center;
  padding: 3rem 1rem;
}

.vpc-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f0f0f0;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: vpc-spin 0.8s linear infinite;
}

.vpc-spinner-large {
  width: 50px;
  height: 50px;
  border-width: 5px;
}

@keyframes vpc-spin {
  to { transform: rotate(360deg); }
}

.vpc-donations-table-wrapper {
  overflow-x: auto;
}

.vpc-donations-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.vpc-donations-table thead {
  background: #f8f9fa;
}

.vpc-donations-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: #2c3e50;
  border-bottom: 2px solid #e0e0e0;
}

.vpc-donations-table td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  color: #7f8c8d;
}

.vpc-donations-table tr:hover {
  background: #f8f9fa;
}

.vpc-donation-modal-content {
  max-width: 500px;
}

.vpc-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.vpc-modal-subtitle {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

/* ===== FORM STYLES ===== */
.vpc-form-group {
  margin-bottom: 1.5rem;
}

.vpc-form-label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.vpc-form-input,
.vpc-form-select {
  width: 100%;
  padding: 0.50rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.vpc-form-input:focus,
.vpc-form-select:focus {
  outline: none;
  border-color: #667eea;
}

/* ===== BUTTON STYLES ===== */
.vpc-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.vpc-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.vpc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.vpc-btn-secondary {
  background: #f0f0f0;
  color: #2c3e50;
}

.vpc-btn-secondary:hover {
  background: #e0e0e0;
}

.vpc-btn-donate {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  font-weight: 700;
  padding: 0.85rem 2rem;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.vpc-btn-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.vpc-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* ===== MESSAGE MODAL ===== */
.vpc-message-modal-content {
  max-width: 400px;
  text-align: center;
}

.vpc-message-modal-body {
  padding: 2rem 1rem;
}

.vpc-message-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.vpc-message-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.vpc-message-text {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .vpc-main-title {
    font-size: 2rem;
  }

  .vpc-patrons-grid,
  .vpc-pets-grid {
    grid-template-columns: 1fr;
  }

  .vpc-modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .vpc-modal-header {
    flex-direction: column;
    text-align: center;
  }

  .vpc-stat-item {
    flex-direction: column;
    text-align: center;
  }
}
/**
 * Virtual Pet Caregiver - Client Styles
 */

/* Login Modal Styling */
#vpcLoginModal .modal-content {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#vpcLoginModal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 1.5rem;
}

#vpcLoginModal .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
}

#vpcLoginModal .btn-close {
  filter: brightness(0) invert(1);
}

#vpcLoginModal .modal-body {
  padding: 2rem;
}

#vpcLoginModal .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

#vpcLoginModal .form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#vpcLoginModal .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#vpcLoginModal .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#vpcLoginModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#vpcLoginModal .btn-primary:active {
  transform: translateY(0);
}

#vpcLoginModal .alert {
  border-radius: 8px;
  border: none;
  padding: 1rem;
}

#vpcLoginModal .alert-info {
  background-color: #e3f2fd;
  color: #1976d2;
}

#vpcLoginModal .alert-danger {
  background-color: #ffebee;
  color: #c62828;
}

#vpcLoginModal .text-decoration-none {
  color: #667eea;
  font-weight: 500;
  transition: color 0.2s ease;
}

#vpcLoginModal .text-decoration-none:hover {
  color: #764ba2;
}

/* Client Page Styling */
.vpc-client-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vpc-client-page h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid #667eea;
  padding-bottom: 0.75rem;
}

.vpc-client-page .user-info {
  margin-bottom: 2rem;
}

.vpc-client-page .user-info p {
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.vpc-client-page .user-info strong {
  color: #333;
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

.vpc-client-page .btn-logout {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vpc-client-page .btn-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  #vpcLoginModal .modal-body {
    padding: 1.5rem;
  }

  .vpc-client-page {
    margin: 1rem;
    padding: 1.5rem;
  }

  .vpc-client-page .user-info strong {
    display: block;
    margin-bottom: 0.25rem;
  }
}

/* Loading Spinner */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
/**
 * Virtual Pet Caregiver - Client Styles
 */

/* Login Modal Styling */
#vpcLoginModal .modal-content {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#vpcLoginModal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 1.5rem;
}

#vpcLoginModal .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
}

#vpcLoginModal .btn-close {
  filter: brightness(0) invert(1);
}

#vpcLoginModal .modal-body {
  padding: 2rem;
}

#vpcLoginModal .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

#vpcLoginModal .form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#vpcLoginModal .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#vpcLoginModal .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#vpcLoginModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#vpcLoginModal .btn-primary:active {
  transform: translateY(0);
}

#vpcLoginModal .alert {
  border-radius: 8px;
  border: none;
  padding: 1rem;
}

#vpcLoginModal .alert-info {
  background-color: #e3f2fd;
  color: #1976d2;
}

#vpcLoginModal .alert-danger {
  background-color: #ffebee;
  color: #c62828;
}

#vpcLoginModal .text-decoration-none {
  color: #667eea;
  font-weight: 500;
  transition: color 0.2s ease;
}

#vpcLoginModal .text-decoration-none:hover {
  color: #764ba2;
}

/* Client Page Styling */
.vpc-client-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vpc-client-page h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid #667eea;
  padding-bottom: 0.75rem;
}

.vpc-client-page .user-info {
  margin-bottom: 2rem;
}

.vpc-client-page .user-info p {
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.vpc-client-page .user-info strong {
  color: #333;
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

.vpc-client-page .btn-logout {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vpc-client-page .btn-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  #vpcLoginModal .modal-body {
    padding: 1.5rem;
  }

  .vpc-client-page {
    margin: 1rem;
    padding: 1.5rem;
  }

  .vpc-client-page .user-info strong {
    display: block;
    margin-bottom: 0.25rem;
  }
}

/* Loading Spinner */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}