/* Sofi-inspired modern, clean UI style */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fb;
  color: #212529;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #6c757d;
  margin-bottom: 30px;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

form {
  display: flex;
  flex-direction: column;
}

input, select, textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

button {
  padding: 12px;
  font-size: 1rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #2563eb;
}

.logout-button {
  background-color: #ef4444;
  margin-top: 20px;
}

.logout-button:hover {
  background-color: #dc2626;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 0.95rem;
}

table th, table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: #f3f4f6;
  font-weight: 600;
}

.link-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #10b981;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.link-button:hover {
  background-color: #059669;
}

.step-indicator {
  font-weight: 600;
  color: #374151;
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  height: 100%;
  background-color: #3b82f6;
  width: 0;
  transition: width 0.5s ease-in-out;
}
