/* Modern Professional Dark Theme */
:root {
  --primary-color: #0a84ff;
  --primary-light: #60a5fa;
  --accent-color: #34d399;
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --card-bg: #263145;
  --light-text: #f8fafc;
  --secondary-text: #cbd5e1;
  --border-radius: 12px;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.7;
  font-weight: 400;
  font-size: 15px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  background: var(--dark-surface);
  color: var(--light-text);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.15), transparent 70%),
              radial-gradient(circle at bottom left, rgba(52, 211, 153, 0.1), transparent 70%);
  z-index: 1;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 5px rgba(10, 132, 255, 0.2);
  object-fit: cover;
}

h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--secondary-text);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--light-text);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(10, 132, 255, 0.25);
}

main {
  padding: 3rem 0;
}

section {
  padding: 1.8rem; /* Reduced from 2.5rem */
  margin: 2rem auto; /* Reduced from 3rem */
  background: var(--dark-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Reduced from 48px */
  height: 40px; /* Reduced from 48px */
  background: rgba(10, 132, 255, 0.1);
  border-radius: 12px;
  margin-right: 1rem;
  color: var(--primary-light);
  font-size: 1.2rem; /* Reduced from 1.5rem */
}

h2 {
  color: var(--light-text);
  margin: 0;
  font-size: 1.7rem; /* Reduced from 2.1rem */
  font-weight: 600;
}

h3 {
  color: var(--primary-light);
  font-size: 1.3rem; /* Reduced from 1.5rem */
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

h3 i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

/* About section larger text with justified alignment */
#about p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.project-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-info .tag-list {
  margin-bottom: 1.5rem;
}

.project-info .tag {
  font-size: 0.9rem;
  padding: 0.3rem 0.85rem;
}

ul {
  list-style-type: none;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.card:hover {
  border-left-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: rgba(10, 132, 255, 0.1);
  color: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--card-bg);
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  height: 100%;
  min-height: 400px;
  
}

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 132, 255, 0.3);
}

.skill-category {
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-bg);
  padding: 1rem 0.6rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.skill-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

/* Updated learning skills differentiator */
.skill-item.learning {
  position: relative;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.learning-badge {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(to right, var(--accent-color), var(--primary-color));
  padding: 0.2rem 0.5rem;
  margin: 0 0.8rem;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.learning-skills .skill-icon {
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.languages-container {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.language-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
  transition: var(--transition);
}

.flag-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
}

.flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.language-name {
  flex-grow: 1;
}

/* Enhanced language level tags */
.language-level {
  display: flex;
  align-items: center;
}

.level-tag {
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-transform: uppercase;
}

/* Native level styling */
.level-tag:contains("Native") {
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

/* Professional level styling */
.level-tag:contains("Professional") {
  background: rgba(10, 132, 255, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(10, 132, 255, 0.2);
}

/* Additional class-based styling */
.level-native {
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.level-professional {
  background: rgba(10, 132, 255, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(10, 132, 255, 0.2);
}

/* Express.js tag styling */
.tag.express {
  background: rgba(68, 68, 68, 0.15);
  border: 1px solid rgba(68, 68, 68, 0.2);
}


/* Responsive adjustments */
@media (max-width: 480px) {
  .level-tag {
    padding: 0.25rem 0.7rem;
    font-size: 0.75rem;
  }
}

/* Adjust responsive layout */
@media (max-width: 480px) {
  .language-item {
    padding: 0.75rem 1rem;
  }
  
  .flag-container {
    width: 20px;
    height: 20px;
  }
  
  .flag-img {
    width: 100%;
    height: auto;
  }
}

/* Footer styles */
footer {
  background-color: var(--dark-surface);
  color: var(--secondary-text);
  text-align: center;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 1.75rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--light-text);
  transition: var(--transition);
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light-text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

.btn[type="submit"] {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn[type="submit"]:hover {
  background: #0072e5;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(10, 132, 255, 0.2);
}

/* Animación sutil del botón */
.btn[type="submit"] i {
  transition: transform 0.3s ease;
}

.btn[type="submit"]:hover i {
  transform: translateX(4px);
}

/* Location styles */
.location {
  color: var(--secondary-text);
  font-size: 1rem; /* Reduced from 1.3rem */
  margin-bottom: 1.5rem; /* Reduced from 1.8rem */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.location i {
  font-size: 1.1rem; /* Reduced from 1.4rem */
  color: var(--accent-color);
}

/* Strengths list styles */
.strengths-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
}

.strengths-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
}

.strengths-list i {
  color: var(--accent-color);
}

/* Education styles */
.education {
  margin-top: 2rem;
}

.education-list {
  margin-top: 1rem;
}

.education-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1rem; /* Reduced from 1.25rem */
  margin-bottom: 1rem;
  transition: var(--transition);
}

.education-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.education-item h4 {
  font-size: 1.1rem; /* Reduced from 1.25rem */
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--light-text);
}

.education-item p {
  color: var(--secondary-text);
  margin: 0;
  font-size: 0.95rem; /* Reduced from 1.1rem */
}

/* Enhanced experience section design */
#experience .card-list {
  grid-template-columns: 1fr;
}

#experience .card {
  background: linear-gradient(145deg, var(--card-bg), var(--dark-surface));
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

#experience .card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.15), transparent 70%);
  z-index: 0;
}

#experience .card-title {
  font-size: 1.4rem; /* Reduced from 1.6rem */
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

#experience .card-subtitle {
  font-size: 1.1rem; /* Fixed from 3rem which was likely a mistake */
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  color: var(--secondary-text);
}

#experience ul {
  margin: 1.5rem 0;
}

#experience li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem; /* Reduced from 1rem */
  position: relative;
  font-size: 1rem; /* Reduced from 1.2rem */
}

#experience li i {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

#experience .tag-list {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#experience .tag {
  background: rgba(10, 132, 255, 0.15);
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: space-around;
  min-width: auto; /* Reduced from 150px */
  width: auto;
  gap: 10px;
  align-items: center;
}

#experience .tag i {
  font-size: 1.4rem; /* Reduced from 1.8rem */
  color: var(--primary-light);
  margin-right: 0;
}

/* Make the text align with the center */
#experience .tag span {
  margin: auto 0;
}

/* Update responsive behavior for mobile */
@media (max-width: 480px) {
  #experience .tag {
    min-width: 100%;
    padding: 0.5rem 1.2rem;
  }
}

/* Project expandable content styles */
.expand-btn {
  background: none;
  border: none;
  color: var(--primary-light);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-top: 0.75rem;
  transition: var(--transition);
}

.expand-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.expand-btn:hover {
  color: var(--primary-color);
}

.project-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  margin-top: 1rem;
  opacity: 0;
}

.project-details.expanded {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.project-details h4 {
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.project-details p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.project-details ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.project-details li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.expand-btn.active i {
  transform: rotate(180deg);
}

/* Updated Project Card Styles */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}

.project-card:hover {
  border-left-color: var(--accent-color);
}

.project-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.expand-indicator {
  color: var(--primary-light);
  background: rgba(10, 132, 255, 0.1);
  width: 24px; /* Reduced from 28px */
  height: 24px; /* Reduced from 28px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.project-card.expanded .expand-indicator i {
  transform: rotate(180deg);
}

.project-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  opacity: 0;
  transition: all 0.5s ease;
  visibility: hidden;
}

.project-card.expanded .project-content {
  max-height: 2000px; /* Increased max-height */
  opacity: 1;
  padding: 0 1.5rem 1.5rem;
  visibility: visible;
}

/* Ensure project details are fully visible */
.project-details {
  opacity: 1;
  max-height: none;
  margin-top: 1rem;
}

/* Make sure project links are visible */
.project-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* Enhanced language/technology tags for projects */
.project-header .tag-list {
  margin: 0;
}

.project-header .tag,
.project-content .tag {
  display: flex;
  justify-content: space-around;
  min-width: 120px; /* Reduced from 150px */
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(10, 132, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  align-items: center;
}

.project-header .tag i,
.project-content .tag i {
  font-size: 1.4rem; /* Reduced from 1.8rem */
  margin-right: 0;
  color: var(--primary-light);
}

.project-header .tag span,
.project-content .tag span {
  margin: auto 0;
  font-size: 1rem;
}

/* Even larger text for project content */
.project-header h3 {
  font-size: 1.7rem; /* Reduced from 2.2rem */
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.project-content p {
  font-size: 1.1rem; /* Reduced from 1.4rem */
  margin-bottom: 1.2rem;
}

.project-details h4 {
  font-size: 1.2rem; /* Reduced from 1.6rem */
  margin-bottom: 0.8rem;
}

.project-details p,
.project-details ul,
.project-details li {
  font-size: 1rem; /* Reduced from 1.25rem */
}

/* Adjust buttons to match the new scale */
.project-links .btn {
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  header {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 1.75rem;
    margin: 1.5rem 1rem;
  }
  
  .card-list {
    grid-template-columns: 1fr;
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 1.2rem;
  }
  
  section {
    padding: 1.5rem;
    margin: 1.25rem 0.5rem;
  }
  
  /* Project cards adjustments */
  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }
  
  /* Tag adjustments for mobile */
  #experience .tag-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  #experience .tag {
    width: 100%;
    justify-content: center;
  }
  
  /* Skills grid for mobile */
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Education items */
  .education-item {
    padding: 1rem;
  }
  
  /* Fix for second project header */
  #projects .project-card:nth-child(2) .project-header {
    justify-content: space-between;
  }
  
  #projects .project-card:nth-child(2) .tag-list {
    margin-bottom: 1rem;
  }
}

/* Increased font sizes for Featured Projects */
#projects h2 {
  font-size: 2.4rem; /* Larger section title */
}

.project-header h3 {
  font-size: 1.8rem; /* Larger project title */
  font-weight: 600;
  margin: 0;
}

.project-content p {
  font-size: 1.25rem; /* Larger project description */
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-details h4 {
  font-size: 1.4rem; /* Larger subheadings */
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.project-details p {
  font-size: 1.1rem; /* Slightly larger detail text */
}

/* Make project tags match experience tags */
.project-header .tag,
.project-content .tag {
  background: rgba(10, 132, 255, 0.15);
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: space-around;
  min-width: auto;
  width: auto;
  gap: 10px;
  align-items: center;
}

.project-header .tag i,
.project-content .tag i {
  font-size: 1.4rem;
  color: var(--primary-light);
  margin-right: 0;
}

.project-header .tag span,
.project-content .tag span {
  margin: auto 0;
  font-size: 1rem;
}

/* Updated flag styling */
.flag-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
}

.flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Adjust responsive layout */
@media (max-width: 480px) {
  .flag-container {
    width: 20px;
    height: 20px;
  }
}

/* Project status indicators */
.project-status {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.project-status.completed {
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.project-status.in-progress {
  background: rgba(255, 170, 0, 0.15);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.2);
}

.project-status.planned {
  background: rgba(10, 132, 255, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(10, 132, 255, 0.2);
}

/* Project status - needs improvement */
.project-status.needs-improvement {
  background: rgba(247, 163, 58, 0.15);
  color: #f7a33a;
  border: 1px solid rgba(247, 163, 58, 0.2);
}

.project-status i {
  margin-right: 0.5rem;
}

.btn.btn-disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-text);
  cursor: not-allowed;
  opacity: 0.7;
}

.btn.btn-disabled:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.1);
}

.project-context {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--secondary-text);
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  background: rgba(10, 132, 255, 0.05);
  padding: 0.8rem 1rem;
  border-radius: 0.25rem;
}

.project-context strong {
  color: var(--primary-light);
  font-weight: 600;
}