/* ==========================================================
   Entry Form
   ========================================================== */

.eecc-entry-form{
    max-width:700px;
}

.eecc-entry-section{
    margin:30px 0;
}

.eecc-entry-section-title{
    margin:0 0 18px;
    padding-bottom:8px;
    border-bottom:2px solid #ececec;
    font-size:1.2rem;
    font-weight:700;
}

.eecc-entry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}

.eecc-field{
    display:flex;
    flex-direction:column;
}

.eecc-field label{
    margin-bottom:6px;
    font-weight:600;
}

.eecc-field input,
.eecc-field select{
    padding:10px 12px;
    border:1px solid #d5d5d5;
    border-radius:6px;
    font-size:15px;
    width:100%;
}

.eecc-field input:focus,
.eecc-field select:focus{
    outline:none;
    border-color:#6cb33f;
}

.eecc-entry-header{
    margin-bottom:28px;
}

.eecc-entry-header h2{
    margin:0 !important;
    font-size:30px;
    line-height:1.2;
}

.eecc-entry-header h3{
    margin:0 !important;
    font-size:24px;
    line-height:1.2;
    font-weight:400;
}

.eecc-entry-header p{
    margin:0 0 18px;
    color:#666;
    font-size:1rem;
}

.eecc-entry-header-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

/* ==========================================================
   Entry Status
   ========================================================== */

.eecc-entry-status{
    margin:0 0 18px;
    font-size:1rem;
    font-weight:600;
}

.eecc-status-open{
    color:#2d8f47;
}

.eecc-status-closed{
    color:#c53030;
}

.eecc-button-disabled{
    background:#c53030;
    color:#fff !important;
}

/* ==========================================================
   Buttons
   ========================================================== */

.eecc-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border-radius:4px;
    text-decoration:none !important;
    text-transform: uppercase;
    font-size:.85rem;
    font-weight:600;
    transition:.2s;
}

.eecc-button-primary{
    background:#6cb33f;
    color:#fff !important;
}

.eecc-button-primary:hover{
    background:#5aa12d;
}

.eecc-button-secondary{
    background:#efefef;
    color:#333 !important;
}

.eecc-button-secondary:hover{
    background:#dddddd;
}

/* ==========================================================
   Payment Options
   ========================================================== */

.eecc-payment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.eecc-payment-card{
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    overflow:hidden;
}

.eecc-payment-card h4{
    margin:0;
    padding:14px 18px 4px;
    font-size:1rem;
    font-weight:700;
}

.eecc-payment-option{
    display:grid;
    grid-template-columns:24px 1fr auto;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    cursor:pointer;
    border-top:1px solid #eee;
    transition:
        background .2s,
        border-color .2s,
        transform .15s;
}

.eecc-payment-option:hover{
    background:#f7fcf4;
    transform:translateY(-1px);
}

.eecc-payment-option input{
    display:none;
}

.eecc-payment-title{
    font-weight:600;
}

.eecc-payment-option strong{
    color:#2d8f47;
}

.eecc-payment-option.active{
    background:#eef8e8;
    border-left:4px solid #6cb33f;
    padding-left:14px;
}

.eecc-payment-icon{

    width:18px;
    height:18px;
    border:2px solid #6cb33f;
    border-radius:50%;
    position:relative;
    flex-shrink:0;
    box-sizing:border-box;
}

.eecc-payment-option.active .eecc-payment-icon::after{

    content:"";
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#6cb33f;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* ==========================================================
   Submit Panel
   ========================================================== */

.eecc-submit-panel{
    margin-top:10px;
    padding:28px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fafafa;
}

.eecc-submit-panel h3{
    margin:0 0 12px;
    font-size:1.2rem;
}

.eecc-submit-panel p{
    margin:0 0 20px;
    color:#555;
    line-height:1.6;
}

.eecc-submit-panel .eecc-button{
    min-width:220px;
}

.eecc-field-error{
    border-color:#c53030 !important;
}

.eecc-error{
    margin-top:6px;
    color:#c53030;
    font-size:.9rem;
    font-weight:500;
}

.eecc-form-error{
    display:none;
    background:#f8d7da;
    border:1px solid #c53030;
    color:#c53030;
    padding:12px 16px;
    border-radius:6px;
    margin-bottom:20px;
    font-weight:600;
}