* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #E9E9E8 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  background: #E9E9E8 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #E9E9E8 !important;
}

.topo {
  background: #0086ff;
  color: #fff;
  padding: 15px;
  font-size: 22px;
}

.banner {
  background: linear-gradient(135deg, #F37021 0%, #CBB49C 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 30px;
}

.banner h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn {
  background: #F37021;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #d96019;
}

.btn-danger {
  background: #dc3545;
}

.btn-danger:hover {
  background: #c82333;
}

.link {
  color: #F37021;
  text-decoration: none;
  font-size: 0.9rem;
}

.link:hover {
  text-decoration: underline;
}

/* Footer Styles */
.site-footer {
  background: #2E2E2E;
  color: #FFFFFF;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #0086ff;
}

.footer-section i {
  margin-right: 8px;
  color: #0086ff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: #ecf0f1;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #0086ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 0.9rem;
}

/* Admin Styles */
.admin-table {
  width: 100%;
  background: white;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-table th,
.admin-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.admin-table th {
  background: #0086ff;
  color: white;
  font-weight: bold;
}

.admin-table tr:hover {
  background: #f5f5f5;
}

/* Forms */
form {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 20px 0;
}

label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

input[type="text"],
input[type="search"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  font-family: Arial, sans-serif;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.errors {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.errors div {
  margin-bottom: 5px;
}