/* Base button styles */
.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

/* Pill container for joined buttons */
.button-pill {
    display: flex;
    margin: 20px 0;
}

/* Clear Form button - left side of pill */
.btn-clear {
    background-color: #dc3545;
    color: white;
    border-radius: 25px 0 0 25px; /* Rounded left, flat right */
}

/* Submit Form button - right side of pill */
.btn-submit {
    background-color: #0b3d91;
    color: white;
    border-radius: 0 25px 25px 0; /* Flat left, rounded right */
}

/* Hover states */
.btn-clear:hover {
    background-color: #c82333;
}

.btn-submit:hover {
    background-color: #092c6b;
}

/* Set Rows button - standalone pill style */
.btn-pill {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

/* Demo patients section */
.demo-patients-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
    border-radius: 20px;
    padding: 6px 15px;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    color: white;
}