body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fafafa;
}

.cms-header {
  background-color: #222;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cms-header .logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.cms-header .salir button {
  background-color: #e53935;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.cms-main {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
}

.cms-card {
  background-color: white;
  border: 2px solid #ddd;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.2rem;
  cursor: pointer;
  width: 200px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cms-card:hover {
  border-color: #1976d2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
