/*
 * Dzienniczek Praktyk Online - Minimal CSS
 * Uses Bootstrap 5.3.0 as the primary framework.
 * Custom CSS is limited to components that Bootstrap doesn't cover well.
 */

/* ================================================================
   LOGIN PAGE - Professional, centered authentication interface
   ================================================================ */

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f1f35 100%);
  padding: 1rem;
}

.login-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
}

.login-card h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3a5f;
  font-weight: 800;
  text-align: center;
}

.login-form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.login-form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a202c;
}

.login-form-group input {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  background-color: #ffffff;
  color: #1a202c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.login-form-group input:focus {
  outline: none;
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* Responsive adjustments */
@media (max-width: 375px) {
  .login-card {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .login-card {
    padding: 3rem;
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .login-card {
    max-width: 500px;
  }
}

/* ================================================================
   CLICKABLE TABLE ROWS - Admin dashboard praktyka table
   ================================================================ */

table.table tbody tr.clickable-row {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

table.table tbody tr.clickable-row:hover {
  background-color: #e9ecef !important;
}
