/* CovePortal Custom Styles */

:root {
    --cp-primary: #0d6efd;
    --cp-secondary: #6c757d;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Cards */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Quote Calculator */
#quoteForm input[type="number"] {
    text-align: center;
}

/* Hero Section */
section.bg-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Tables */
.table th {
    font-weight: 600;
    border-top: none;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
}
