.btn-outline {
  background-color: white;
  color: #65a30d; /* lime-600 */
  border: 1px solid #65a30d;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.btn-outline:hover {
  background-color: #ecfccb; /* lime-100 */
}

.dark .btn-outline {
  background-color: #374151; /* gray-700 */
  color: #d9f99d; /* lime-300 */
  border-color: #84cc16;
}

.dark .btn-outline:hover {
  background-color: #4b5563; /* gray-600 */
}


.btn-solid {
    background-color: #65a30d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}
.btn-solid:hover {
    background-color: #4d7c0f;
}

.btn-switch {
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}
.dark .btn-switch {
    background-color: #374151;
}
.btn-switch:hover {
    background-color: #e5e7eb;
}
.dark .btn-switch:hover {
    background-color: #4b5563;
}

.btn-cta {
    background-color: #65a30d;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.2s;
}
.btn-cta:hover {
    background-color: #4d7c0f;
}

.card {
    padding: 1.5rem;
    background-color: #ecfccb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.dark .card {
    background-color: #374151;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4d7c0f;
}
.dark .card-title {
    color: #d9f99d;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 50;
}
.modal.flex {
    display: flex;
}
.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 24rem;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4d7c0f;
    text-align: center;
}
.modal-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.modal-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    outline: none;
}
.modal-input:focus {
    border-color: #a3e635;
    box-shadow: 0 0 0 2px #bef264;
}
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 1.25rem;
    color: #6b7280;
}
.modal-close:hover {
    color: #dc2626;
}
