.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #0BB3A4;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: rgba(11, 179, 164, 0.9);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-outline {
    border: 1px solid #E5E7EB;
    color: #111827;
    background-color: #fff;
}

.btn-outline:hover {
    border-color: #0BB3A4;
    color: #0BB3A4;
}

.input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.input:focus {
    outline: none;
    border-color: #0BB3A4;
    box-shadow: 0 0 0 3px rgba(11, 179, 164, 0.1);
}

.label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.goal-card {
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    position: relative;
}

.goal-card:hover {
    border-color: #0BB3A4;
    background: #f0fffe;
    transform: translateY(-2px);
}

.goal-card.selected {
    border-color: #0BB3A4;
    background: #E6F6F5;
}

.goal-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0BB3A4;
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

[x-cloak] {
    display: none !important;
}

@keyframes vialPulse {
    0%, 100% {
        opacity: .45;
    }
    50% {
        opacity: 1;
    }
}
