/* ================================
   Estilos globales - miurl.mx
   ================================ */

body {
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  margin: 0;
  padding: 0;
  color: #333;
}

h1, h2, h3 {
  color: #0057b8;
  margin-bottom: 15px;
}

a {
  color: #0057b8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Contenedores principales */
.container, .panel, .dashboard {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Formularios */
form {
  margin-top: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="date"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

button {
  padding: 12px 20px;
  background: #0057b8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #004494;
}

/* Tablas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background: #0057b8;
  color: white;
}

/* Mensajes */
.message {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
}

.success {
  color: green;
}

.error {
  color: red;
}

/* Header y Footer */
header {
  background: #0057b8;
  padding: 15px;
  color: white;
}

header nav a {
  color: white;
  margin-right: 15px;
}

footer {
  background: #f4f6f8;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #555;
}
