.event_actions{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: fit-content;
}

.event_btn{
    display:inline-block;
    padding:12px 28px;
    border:2px solid #2b66b1;
    border-radius:30px;
    color:#2b66b1;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
    min-width:180px;
    text-align:center;
}

.event_btn:hover{
    background:#2b66b1;
    color:white;
    text-decoration:none;
}

.event_btn_primary{
    background:#2b66b1;
    color:white;
}

.event_btn_primary:hover{
    background:#1d4f8e;
    border-color:#1d4f8e;
}