/* Buttons Styles */
.btn-primary {
    background: linear-gradient(to right, #9333ea, #4f46e5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(to right, #7e22ce, #4338ca);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.btn-secondary {
    background: white;
    color: #9333ea;
    border: 2px solid #9333ea;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.input-field {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}
