/* Base styles and reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Quote container styling */
.quote-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Quote text styling */
#quote-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #2d3748;
  position: relative;
  padding: 0.5rem 2rem;
}

#quote-text::before,
#quote-text::after {
  content: '"';
  font-size: 2.5rem;
  color: #6366f1;
  position: absolute;
}

#quote-text::before {
  left: 0;
  top: -10px;
}

#quote-text::after {
  right: 0;
  bottom: -10px;
}

/* Author styling */
#quote-author {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  color: #4a5568;
  margin-bottom: 0.75rem;
  display: block;
}

/* Description styling - now separate from author */
#quote-description {
  font-size: 0.95rem;
  text-align: right;
  color: #718096;
  font-style: italic;
  display: block;
  margin-top: 0.25rem;
}

/* Button styling */
#new-quote-btn {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.85rem 1.75rem;
  background-color: #6366f1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#new-quote-btn:hover {
  background-color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
  .quote-container {
    padding: 1.5rem;
  }
  
  #quote-text {
    font-size: 1.25rem;
    padding: 0.25rem 1.75rem;
  }
  
  #quote-author {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  #quote_description {
    font-size: 0.9rem;
  }
  
  #new-quote-btn {
    padding: 0.75rem 1.5rem;
  }
}
