body {
    margin: 0;
    font-family: Arial, sans-serif;
}

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

.content {
    flex: 1;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.heading h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.requiredFields::after {
    content: "*";
    color: red;
    margin-left: 2px;
}

.mandatory.label-style {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-style {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.control-error {
    display: block;
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

.float-right {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-size: 13px;
}

.theme-btn {
    background-color: #4d9ca6 !important;
    color: white !important;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.theme-btn-secondary {
    background-color: white !important;
    color: #4d9ca6 !important;
    border: 2px solid #4d9ca6;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
}

.theme-btn:hover {
    background-color: #4d8ca6;
}

.theme-btn-secondary:hover {
    background-color: lightgrey;
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px;
}

.feature-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
    color: #317c88;
    font-size: 15px;
    white-space: nowrap;
}

.feature-card .icon {
    font-size: 24px;
}

.footer {
    background: #4d9ca6;
    color: white;
    padding: 1em;
    text-align: center;
}

a.no-underline {
    text-decoration: none;
}

div.breadcrumb {
    background-color: lightgrey;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    margin-top: 20px;
    margin-left: 100px;
    margin-right: 100px;
}

span.breadcrumb-separator {
    margin-left: 15px;
    margin-right: 15px;
}

div.pagination {
    background-color: lightgrey;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
}

span.pagination-separator {
    margin-left: 15px;
    margin-right: 15px;
}

div.product-family-card {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div.product-card {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 6px;
    width: 80%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}