/* Improved styling for AI Resume Builder - Main Stylesheet */

/* Base container */
.airb-resume-builder {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.airb-resume-builder h1,
.airb-resume-builder h2,
.airb-resume-builder h3,
.airb-resume-builder h4 {
  color: #222;
  font-weight: 500;
  margin: 20px 0 10px;
}

/* Paragraphs */
.airb-resume-builder p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Links */
.airb-resume-builder a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.airb-resume-builder a:hover,
.airb-resume-builder a:focus {
  color: #005177;
}

/* Buttons - enhanced appearance and focus */
.airb-resume-builder .btn-ada {
  background-color: #0073aa;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  margin: 5px 0;
}
.airb-resume-builder .btn-ada:hover,
.airb-resume-builder .btn-ada:focus {
  background-color: #005177;
  outline: none;
}

/* Form elements */
.airb-resume-builder form {
  margin-bottom: 20px;
}
.airb-resume-builder label {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.airb-resume-builder input[type="text"],
.airb-resume-builder input[type="email"],
.airb-resume-builder textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 16px;
}
.airb-resume-builder textarea {
  resize: vertical;
}

/* Accessibility focus styles */
.airb-resume-builder a:focus,
.airb-resume-builder button:focus,
.airb-resume-builder input:focus,
.airb-resume-builder textarea:focus {
  outline: 2px dashed #005177;
  outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .airb-resume-builder {
    padding: 15px;
  }
}