/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables de colores */
:root {
  --pastel-pink: #FFD1DC;
  --pastel-blue: #ADD8E6;
  --light-pink: #FFE4E1;
  --light-blue: #E6E6FA;
  --dark-text: #4A4A4A;
}

body {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-blue) 100%);
  color: var(--dark-text);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
  color: var(--dark-text);
  border-bottom: 2px solid var(--pastel-pink);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

a {
  color: #7B68EE;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #9370DB;
}

.button, input[type="submit"] {
  background-color: var(--pastel-pink);
  color: var(--dark-text);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem 0;
}

.button:hover, input[type="submit"]:hover {
  background-color: var(--light-pink);
}

.post-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--pastel-blue);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--pastel-blue);
  border-radius: 4px;
  margin-bottom: 1rem;
}
