body {
    background-color: #2A3846;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h2 {
    text-align: center;
    color: #F8F812;
    padding-top: 25px;
}

#carrello-hint {
    text-align: center;
    font-size: 14px;
    color: #CCCCCC;
    margin: 10px 0;
}

#cart-summary {
    max-width: 80%;
    margin: 0 auto;
	color: #FFFFFF;
}

#cart-summary table {
    width: 100%;
    border-collapse: collapse;
    color: #FFFFFF;
}

#cart-summary th, #cart-summary td {
    background-color: #2A3846;
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

#cart-summary th {
    color: #F8F812;
}

#cart-summary tr:hover td {
    background-color: #374B5A;
}

#cart-summary tr.selected-row td {
    background-color: #445566 !important;
    border: 1px solid #F8F812;
}
label, legend{
	color:white;
}
.paypal-button {
    display: block;
    width: 100%;
    background-color: #ffc439;
    color: #111;
    padding: 12px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.paypal-button:hover {
    background-color: #f0b429;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #F8F812;
    transform: scale(1.3);
	margin-right:10px;
}

.participant-inline {
    margin-top: 5px;
    font-size: 14px;
    color: #F8F812;
}

/* MOBILE */
@media screen and (max-width: 768px) {
    #cart-summary table thead {
        display: none;
    }

    #cart-summary table, tbody, tr, td {
        display: block;
        width: 100%;
    }

    #cart-summary table tr {
        margin-bottom: 15px;
        background-color: #2A3846;
        border: 1px solid #444;
        border-radius: 8px;
        box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    }

    #cart-summary table td {
        padding: 8px 10px;
        position: relative;
        padding-left: 45%;
        text-align: right;
    }

    #cart-summary table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        color: #F8F812;
    }

    .participant-inline {
        display: block;
        margin-top: 8px;
        font-size: 13px;
        color: #F8F812;
    }
}
