#ccs-order-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: sans-serif;
}

#ccs-order-container h3 {
    color: #333;
    border-bottom: 2px solid #ed1c24;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.ccs-group {
    margin-bottom: 15px;
}

.ccs-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #444;
}

.ccs-group input[type="text"],
.ccs-group input[type="file"],
.ccs-group select,
.ccs-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box; 
    font-family: inherit;
}

.ccs-group textarea {
    resize: vertical;
}

.ccs-radio-group label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
    cursor: pointer;
}

#ccs-map {
    height: 300px;
    width: 100%;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ccs-distance-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    background: #fff;
    padding: 10px;
    border-left: 4px solid #ed1c24;
}

.ccs-price-breakdown {
    margin-top: 25px;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.ccs-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #555;
}

.ccs-total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #eee;
    color: #333;
    font-weight: bold;
    font-size: 1.2em;
}

.ccs-total-row span:last-child {
    color: #ed1c24;
}

.ccs-action-box {
    margin-top: 20px;
    text-align: right;
}

#ccs-submit-btn {
    background-color: #ed1c24;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

#ccs-submit-btn:hover {
    background-color: #c41219;
}

#ccs-loader {
    display: none;
    text-align: center;
    margin-top: 10px;
    color: #666;
}