/* ProCargo Core Styles */

/* Force light theme globally - override OS dark mode */
:root,
html {
    color-scheme: light !important;
}

html,
body {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}

.procargo-calculator, .procargo-contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.procargo-calculator input, .procargo-calculator select,
.procargo-contact-form input, .procargo-contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.procargo-calculator button, .procargo-contact-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(88deg, #5368B9 -25.12%, #5EC7F2 107.96%);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.procargo-calculator__result {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Force light mode for dark OS preference (redundant safety) */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light !important;
    }
    html, body {
        background-color: #ffffff !important;
        color: #1a1a1a !important;
    }
}
