:root {
    --main-dark-blue: #1A374D;
    --main-dark-blue-hover: #12293A;
    --secondary-ocean-green: #37B9A1;
}


html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    font-family: 'Segoe UI', sans-serif;
}


.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.Profile-Picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.avatar {
    height: 40px;
    width: 40px;
    object-fit: cover;
}


.insurance-policy-container {
    max-width: 900px;
    margin: 2rem auto;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

    .insurance-policy-container h2 {
        text-align: center;
        margin-bottom: 1.5rem;
        color: #2c3e50;
    }

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

    .policy-section h4 {
        color: #2980b9;
        margin-bottom: 1rem;
    }

.policy-field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 5px;
}

.policy-label {
    font-weight: bold;
    color: #34495e;
}

.policy-value {
    color: #555;
}

@media (max-width: 768px) {
    .policy-field {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav-pills .nav-link.active {
    background-color: #065f46 !important;
    color: white !important;
}

    .nav-pills .nav-link.active:focus,
    .nav-pills .nav-link.active:active {
        color: white !important;
        background-color: #065f46 !important;
        box-shadow: none !important;
        outline: none !important;
    }

.nav-pills .nav-link:hover {
    background-color: #0f766e;
    color: white;
}

.btn-bravios {
    background-color: #065f46;
    color: white;
    border: none;
}

    .btn-bravios:hover {
        background-color: #0f766e;
        color: white;
    }


.custom-btn {
    background-color: #065f46;
    border-color: #065f46;
    color: white;
}

.custom-grey-btn {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

button[type="submit"].btn,
input[type="submit"].btn {
    background-color: var(--main-dark-blue);
    border-color: var(--main-dark-blue);
    color: white !important;
    font-weight: bold;
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

    button[type="submit"].btn:hover,
    input[type="submit"].btn:hover {
        background-color: var(--main-dark-blue-hover) !important;
        border-color: var(--main-dark-blue-hover) !important;
        color: white !important;
    }
