body{
    background:#fff;
}

.ci-calendar-wrapper{
    max-width:520px;
    margin:50px auto;
    font-family:Arial,sans-serif;
}

.ci-calendar-box{
    background:#fff;
    border:1px solid #f0d6c2;
    border-top:4px solid #f68102;
    border-radius:24px;
    padding:22px;
}

.ci-calendar-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.ci-calendar-nav button{
    border:1px solid #edd5c3;
    background:#fff;
    border-radius:30px;
    padding:8px 16px;
    font-size:12px;
    cursor:pointer;
}

.ci-calendar-nav h2{
    font-size:20px;
}

.ci-weekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    text-align:center;
    margin-bottom:15px;
    color:#f68102;
    font-size:11px;
    text-transform:uppercase;
}

.ci-calendar-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:14px;
}

.ci-day{
    width:60px;
    height:60px;
    margin:auto;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
}

.ci-event{
    background:#f9ebe0;
    color:#d85f00;
}

.ci-active{
    background:#f68102;
    color:#fff;
    box-shadow:0 8px 20px rgba(246,129,2,.3);
}

.ci-events-box{
    margin-top:25px;
    border:1px solid #f0d6c2;
    border-top:4px solid #f68102;
    border-radius:24px;
    padding:22px;
}

.ci-event-card{
    border:1px solid #ecd8c9;
    border-radius:18px;
    padding:18px;
    margin-bottom:15px;
}

.ci-tag{
    display:inline-block;
    background:#f68102;
    color:#fff;
    padding:4px 10px;
    border-radius:30px;
    font-size:10px;
    margin-bottom:10px;
}

.ci-formulario-wrapper{
    max-width:700px;
    margin:50px auto;
}

.ci-formulario-box{
    border:1px solid #f0d6c2;
    border-radius:24px;
    padding:35px;
}

.ci-form-group{
    margin-bottom:20px;
}

.ci-form-group label{
    display:block;
    margin-bottom:8px;
}

.ci-form-group input,
.ci-form-group textarea{
    width:100%;
    border:1px solid #ecd8c9;
    border-radius:14px;
    padding:14px;
    box-sizing:border-box;
}

.ci-btn-enviar{
    background:#f68102;
    color:#fff;
    border:none;
    padding:14px 24px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}

.ci-success{
    background:#e8f7e8;
    border:1px solid #8bc48b;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}
