body {
  background-color: #121212;
  color: white;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.stars {
  font-size: 40px;
  cursor: pointer;
  margin-bottom: 20px;
  color: #444; /* Empty star color */
}

.stars span.active {
  color: #ffb400; /* Gold star color */
}

textarea {
  background: transparent;
  border: 1px solid #444;
  border-radius: 4px;
  color: white;
  padding: 10px;
  font-size: 16px;
  resize: none;
}

.btn-primary {
  background-color: #8ab4f8; /* Light blue from image */
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #8ab4f8;
  border: 1px solid #444;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* Card Container */
.card {
  background-color: #1a1a1a; /* Very dark grey */
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Star Styling */
.stars {
  font-size: 45px;
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.stars span {
  cursor: pointer;
  color: #333; /* Dim stars */
  transition: color 0.2s;
}

.stars span.active {
  color: #ffb400; /* Gold/Yellow stars from image */
}

/* The Feedback Form Area */
#feedback-section {
  margin-top: 20px;
}

textarea#comentario {
  width: 100%;
  background-color: #121212; /* Darker than the card */
  border: 1px solid #444;
  border-radius: 6px;
  color: #e0e0e0;
  padding: 15px;
  font-size: 16px;
  font-family: inherit;
  resize: none;
  box-sizing: border-box;
}

textarea#comentario::placeholder {
  color: #666;
}

/* Button Layout */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
}

/* Button Styles */
.btn-primary {
  background-color: #8ab4f8; /* Soft blue from the image */
  color: #1a1a1a;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background-color: #aecbfa;
}

.btn-secondary {
  background-color: transparent;
  color: #8ab4f8;
  border: 1px solid #3c4043;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(138, 180, 248, 0.05);
}

  
/* Card and Background */
body { background-color: #121212; color: #fff; }

.card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    padding: 32px;
    border-radius: 12px;
}

/* Feedback Form Styles */
textarea#comentario {
    background-color: #121212;
    border: 1px solid #3c4043;
    color: #e8eaed;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    font-size: 14px;
    transition: border-color 0.2s;
}

textarea#comentario:focus {
    border-color: #8ab4f8;
    outline: none;
}

/* Matching the "Publicar" Button in the Image */
.btn-primary {
    background-color: #8ab4f8; /* Specific Google/Dark-theme Blue */
    color: #202124;
    border-radius: 20px; /* Rounded pill shape */
    padding: 10px 24px;
    font-size: 14px;
    text-transform: none;
}

.btn-secondary {
    color: #8ab4f8;
    background: transparent;
    border: none;
    font-size: 14px;
    margin-right: 10px;
}