body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.header {
    background: linear-gradient(to right, #003366, #005bb5);
    padding: 1.5rem 1rem;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header img {
    max-width: 40px;
    margin-right: 10px;
}

.table-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.table-container h1 {
    color: #005bb5;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.table thead th {
    background-color: #8dc63f;
    color: white;
    text-align: center;
}

.table tbody tr {
    text-align: center;
    font-size: 1.1rem;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.model-name {
    background-color: #8dc63f;
    color: white;
    padding: 5px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-choose {
    background-color: #005bb5;
    color: white;
    font-weight: bold;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-choose:hover {
    background-color: #8dc63f;
}

.footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.checkout-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.checkout-container h1 {
    color: #005bb5;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.form-label {
    font-weight: bold;
}

.btn-primary {
    background-color: #005bb5;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #8dc63f;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #e9f7ef;
    border: 1px solid #a3e4d7;
    border-radius: 8px;
}

.form-section h2 {
    color: #005bb5;
    margin-bottom: 1rem;
}

.d-none {
    display: none !important;
}

.input-rounded {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: #005bb5;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.highlight {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-details h3 {
    margin: 0 0 10px 0;
    color: #005bb5;
    font-size: 20px;
    font-weight: bold;
}

.plan-info {
    list-style: none;
    padding: 0;
}

.plan-info li {
    font-size: 16px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-info i {
    color: #8dc63f !important;
}

.summary-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.summary-container h1 {
    color: #005bb5;
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #005bb5;
    border-bottom: 2px solid #005bb5;
    padding-bottom: 0.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
.btn-confirm {
    background-color: #005bb5;
    color: white;
    border: none;
}
.btn-confirm:hover {
    background-color: #003366;
}
.btn-edit {
    background-color: #ccc;
    color: black;
    border: none;
}
.btn-edit:hover {
    background-color: #bbb;
}