
/* Footer */

/* Container box */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

/* Headings */
.container h2,
h1, h2 {
  text-align: center;
  color: #00796b;
  margin-bottom: 25px;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #374151;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00796b;
  outline: none;
  background-color: #f0fdfa;
}

/* Submit button */
button[type="submit"],
form button {
  margin-top: 20px;
  background-color: #00796b;
  color: white;
  padding: 14px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover,
form button:hover {
  background-color: #004d40;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

table th {
  background-color: #00796b;
  color: #fff;
}

table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Buttons */
.btn {
  padding: 6px 12px;
  color: white;
  text-decoration: none;
  margin: 0 3px;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn.edit {
  background-color: #0277bd;
}

.btn.delete {
  background-color: #c62828;
}

.btn.search {
  background-color: #43a047;
}

.btn:hover {
  opacity: 0.85;
}

/* Login box */
.login-box {
  max-width: 400px;
  margin: 100px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-box h2 {
  color: #00796b;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.login-box input[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #00796b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.login-box input[type="submit"]:hover {
  background: #004d40;
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background-color: #f2f2f2;
  margin-top: 10px;
  flex-wrap: wrap;
}

.contact-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.call-btn {
  background-color: #007bff;
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn:hover {
  background-color: #0056b3;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}
