/* Base pill style for all buttons */
.btn {
    display: inline-block;       /* <a> behaves like button */
    text-decoration: none;       /* remove underline */
    border-radius: 999px;        /* pill shape */
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

/* Primary - blue border */
.btn-primary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #007bff;
    color: #ffffff;
}

/* Secondary - light green border */
.btn-secondary {
    background-color: transparent;
    color: #3ed843f5;
    border: 2px solid #3ed843f5;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #3ed843f5;
    color: #ffffff;
}

/* Danger - red filled */
.btn-danger {
    background-color: #dc3545; /* red background */
    color: #ffffff;
    border: 2px solid #dc3545; /* add border to be consistent */
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #a71d2a; /* darker red on hover */
    color: #ffffff;
}

/* Ensure link buttons behave like buttons */
a.btn {
    display: inline-block;
}