.panel.header, .panel.wrapper{
    background-color: #4dbeed !important;
}

.vertical-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

.vertical-links li {
    border-bottom: 1px solid #ccc;
}

.vertical-links a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.vertical-links a:hover {
    background-color: #4dbeed;
    color: white;
}

.hide-placeholder {
    display: none !important;
}

#dynamic-table {
    border: 1px solid #e3e3e3;
    width:100%;
    margin-top:10px;
    margin-bottom: 10px;
}

.amcform-toolbar {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 10px !important;
}

.amcform-toolbar button {
    background-color: #4dbeed !important;
}

.action.primary.amcform-next,
.action.primary.amcform-prev {
    margin: 0 !important;
}

.account.page-layout-2columns-left .sidebar-additional {
    display: none !important ;
}

.box-newsletter {
    display: none !important;
}

.customer-menu .header.links .wishlist{
    display: none;
}

.form-address-edit .message.info {
    display: none !important;
}

.medicalModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    align-items: center;
    justify-content: center;
}


.medicalModal.visible {
    display: flex;
    position: absolute;
    top: 100%;
    /*transform: translate(-50px, -50px);*/
}

.medicalModal .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    width: 70%;
    max-width: 500px;
    text-align: center;
}

body.modal-open {
    overflow: hidden;
    height: 100vh;
    position: relative;
    touch-action: none;
    overscroll-behavior: none;
}

.tiles-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.tile {
    background: #4dbeed7d;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 165px;
}

.tile h3 {
    margin-bottom: 10px;
    font-size: xx-large;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgb(233 226 16 / 40%),
                 0px 0px 10px rgb(247 216 33 / 20%),
                 0px 0px 15px rgb(255 231 31 / 10%),
                 0px 0px 20px rgb(230 202 31 / 5%);
}

.tile p {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgb(233 226 16 / 40%),
                 0px 0px 10px rgb(247 216 33 / 20%),
                 0px 0px 15px rgb(255 231 31 / 10%),
                 0px 0px 20px rgb(230 202 31 / 5%);
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

.tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tile-link:hover {
    text-decoration: none;
}

.copyright{
    background-color: #4dbeed !important;
}

.page-title-wrapper.page-title {
    text-align: center !important;
    color: #ffffff !important;
    padding: 0 500px !important;
}

/* For medium screens (tablets, small laptops) */
@media (max-width: 1024px) {
    .tiles-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .tile {
        min-height: 100px;
    }
}

@media (max-width: 600px) {
    .tiles-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .page-title-wrapper.page-title {
        padding: 0 20px;
    }

    .tile {
        min-height: 100px;
    }
}

#custom-docs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin-bottom: 20px;
}

#custom-docs-wrapper .field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#custom-docs-wrapper .accident-data {
    padding: 9px;
    min-height: 40px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
}

#custom-docs-wrapper #accident_date {
    width: 20%;
    margin-right: 255px;
}

#custom-docs-wrapper #accident_place {
    margin-right: 176px;
    width: 30%;
}

#custom-docs-wrapper .field label {
    flex: 1 0 45%;
    font-weight: bold;
    margin-right: 10px;
}

#custom-docs-wrapper .field input[type="file"] {
    flex: 1 0 50%;
}

.required-star {
    color: red;
    margin-left: 4px;
}

@media (max-width: 600px) {
    #custom-docs-wrapper .field {
        flex-direction: column;
        align-items: flex-start;
    }

    #custom-docs-wrapper .field label,
    #custom-docs-wrapper .field input[type="file"] {
        flex: 1 0 100%;
    }

    #custom-docs-wrapper .accident-data {
        width: 50% !important;
    }

}

