

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    /* padding: 5px; */
    width: 450px;
    border-radius: 10px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

/* Tabs */
.tabs {
    display: flex;
    margin-top: 15px;
}

.tab {
    padding: 6px 12px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #eee;
}

.tab.active {
    background: #0d6efd;
    color: #fff;
}

.tab-content {
    display: none;
    margin-top: 15px;
}

.tab-content.active {
    display: block;
}
