/* static/css/style.css */

/* === GENERAL === */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f4f8fb;
  margin: 0;
  padding: 20px;
  color: #333;
}

h1, h2, h3 {
  color: #2c89c6;
  font-weight: 600;
}

a {
  color: #2c89c6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === CONTAINER / CARD === */
.container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}

th {
  background-color: #e9ecef;
  color: #333;
  font-weight: 600;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn.aproba {
  background-color: #28a745;
  color: white;
}

.btn.respinge {
  background-color: #dc3545;
  color: white;
}

.btn.custom {
  background-color: #2c89c6;
  color: white;
}

/* === FORM ELEMENTS === */
input[type="text"], input[type="date"], input[type="email"],
input[type="password"], select, textarea {
  width: 100%;
  padding: 10px 14px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: #2c89c6;
  outline: none;
}

/* === CUSTOM BUTTON === */
button {
  background-color: #2c89c6;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2175aa;
}

/* === NAVBAR FIX (dacă folosești navbar Bootstrap) === */
.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* === CHECKIN COLORS === */
.checkin {
  color: green;
  font-weight: bold;
}

.checkout {
  color: red;
  font-weight: bold;
}
/* Navbar stil personalizat */
.navbar {
  background: linear-gradient(90deg, #0066ff, #3399ff);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #e6f0ff !important;
  transition: color 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-nav .nav-link:hover {
  color: #ffffcc !important;
  text-decoration: underline;
}

.navbar-text {
  font-size: 0.9rem;
  color: #fff;
  margin-right: 10px;
}
