/* Order Agreement Checkbox Styles */
.order-agree-block {
    margin: 20px 0;
    padding: 15px;
    background-color: #f0f8ff;
    border: 2px solid #0066cc;
    border-radius: 8px;
}

.agree-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.agree-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.agree-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.agree-text a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.agree-text a:hover {
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
}

.agree-error {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c00;
    font-size: 13px;
    font-weight: 500;
}

/* Additional styles for better visibility */
@media (max-width: 768px) {
    .order-agree-block {
        margin: 15px 0;
        padding: 12px;
    }
    
    .agree-text {
        font-size: 13px;
    }
    
    .agree-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}