*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: var(--sapFontFamily);
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
.container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Fixed-width content container for large screens */
.content-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner{
    width: 100vw;
    height: 38.8125rem;
    flex-shrink: 0;
    background-color: var(--sapBrandColor);
    background-image: url(images/backgrounds/Anvil_Ripple_desktop.svg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.home-page-banner-card{
    width: 100%;
    height: 100%;
    display:flex;
    justify-content: space-between;
  
}
.left-container{
    padding-top: 9.0625rem;
    padding-left: 8.625rem;
    width:38.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    color:var(--sapBaseColor);
}
.gap-container{
    width: 7.5rem;
}

.welcomeMSG h3{
    padding-top:0.9375rem;
    font-size: var(--sapFontHeader3Size);
    font-weight: lighter;
}

.WelcomeTitle {
    padding-top: 0.625rem;
    font-size: var(--sapFontHeader1Size);
}
.right-container{
    width: 43.75rem;
    height: 100%;
    padding-top: 14.25rem;
    overflow: hidden;
}
.falimg{
    width: 100%;
    height: auto;
    border-top:1rem solid var(--sapShell_Background);
    border-left:1rem solid var(--sapShell_Background);
    border-top-left-radius: 0.625rem;

}
.infoStripWrapper{
    background-color: var(--sapShell_Background);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.infoTitle {
    font-weight: 700;
    margin-top: 0.3125rem;
    color:#12171C;
    font-family:var(--sapFontFamily);
    font-size:var(--sapFontHeader4Size);
}
.infoStrip{
    background-color: var(--sapShell_Background);
    padding:4.75rem 8.625rem;
    gap:2rem;
    display: flex;
    justify-content: space-between;
}
.infoTile{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:1rem;
}
.infoIcon {
    color: var(--sapContent_NonInteractiveIconColor);
    height: 1.5rem;
    width: 1.5rem;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: default;
}

.icon-search,
.icon-wrench,
.icon-calendar,
.icon-machine {
    font-family: 'SAP-icons', sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}
.infoSub{
    margin-top:0.625rem;
    font-size: var(--sapFontHeader5Size);
    color: var(--sapContent_LabelColor);
}
.appDescription>p{
    font-size: var(--sapFontHeader4Size);
    margin-top: 0.9375rem;
}

.signInBtn{
    width: 9.75rem;
    height: 2.25rem;
    padding:0.625rem;
    font-size: 0.875rem;
    background-color: var(--sapButton_Background);
    border: var(--sapButton_BorderWidth);
    cursor: pointer;
    color: var(--sapButton_TextColor);
    border-radius:var(--sapButton_BorderCornerRadius);
    margin-top: 1.25rem;
    font-family: var(--sapButton_FontFamily);
}

.signInBtn:hover{
    background-color: var(--sapButton_Hover_Background);

}
.register-new{
    font-family:var(--sapFontFamily);
    margin-top: 0.9375rem;
    font-weight: bold;
    font-size: var(--sapFontSize);
    color: var(--sapContent_ContrastTextColor);
    text-decoration: none;
    display: none;
}
.site-footer {
    flex-shrink: 0;
}

.footer-wrapper{
    width: 100%;
    height: 3.5rem;
    background-color: var(--sapGroup_ContentBackground);
    display: flex;
    align-items: center;
    padding: 0 3.125rem;
    justify-content: space-between;
}
.footer-links{
    display: flex;
    gap: 1.25rem;
}
.footer-links>ul{
    list-style: none;
    display: flex;
    gap: 1.25rem;
}
.footer-links>ul>li>a{
    text-decoration: none;
    font-size: 0.875rem;
    color: #1D2D3E;
}
.sap-logo-img{
    width: 3rem;
    height: 1.5rem;
}
.left-footer{
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.footer-tagline{
    color: #1d2d3e;
    font-size: 0.875rem;
    font-weight: bold;
}

.mobile-menu {
    display: none;
    position: relative;
}

.menu-dots {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 0.1875rem;
    padding: 0.5rem;
}

.dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: var(--sapTextColor);
    border-radius: 50%;
}

.mobile-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 -0.125rem 0.625rem rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.625rem;
    min-width: 12.5rem;
    z-index: 1000;
}

.mobile-dropdown.show {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.mobile-dropdown a:hover {
    background-color: #f5f5f5;
}

/* Hide image for screen sizes less than 61.5rem */
@media (max-width: 61.5rem) {
    .right-container {
        display: none;
    }
    .gap-container {
        display: none;
    }
    .left-container {
        width: 65%;
        padding-top: 7.5rem;
        padding-left: 3.65625rem;
    }
    .home-page-banner-card {
        margin-left: 0;
    }
    .infoStrip {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 3.8125rem 3.25rem;
        gap: 1.5rem;
    }
    
    .infoTile {
        width: calc(50% - 1.5rem);
        margin-bottom: 1.25rem;
        min-width: 45%;
        max-width: 48%;
        box-sizing: border-box;
    }
    .content-container {
        max-width: 100vw;
        padding: 0 1rem;
    }

    .footer-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 48rem) {
    .banner{
        background-image: url(images/backgrounds/Anvil_Ripple_mobile.svg);
        background-size: contain;
        background-repeat: repeat;
    }
    .left-container{
        padding-top: 6.25rem;
        padding-left: 2.5rem;
        width: 80%;
    }
}
@media (max-width: 37rem) {
    .left-container{
        padding-top: 5.3125rem;
        padding-right: 3.125rem;
        width: 100%;
    }
    .banner{
        background-image: url(images/backgrounds/Anvil_Ripple_mobile.svg);
        background-size: contain;
        background-repeat: repeat;
    }
}

@media (max-width: 25rem) {
    .left-container{
        padding: 2.5rem 1.25rem 0 1.875rem;
    }
    .infoStrip {
        padding: 1.25rem 1.25rem;
        gap: 0.3125rem;
    }
    
    .infoTile {
        margin-bottom: 0.9375rem;
        padding: 0.625rem;
    }
    
    .infoIcon {
        margin-bottom: 0.3125rem;
    }
    
    .infoTitle {
        margin-bottom: 0.3125rem;
        font-size: 1rem;
    }
    
    .infoSub {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
}
@media (min-width: 87.5rem) {
    .banner {
        background-size: contain;
        background-repeat: repeat-x;
    }
}

/* Dialog Styles */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    box-sizing: border-box;
}

.dialog-box {
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #CCCCCC;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 93%;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.dialog-header {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid var(--sapButton_BorderColor);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.dialog-title {
    font-size: var(--sapFontHeader5Size);
    font-weight: bold;
    color: var(--sapPageHeader_TextColor);
    margin: 0;
}

.dialog-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
    font-size: var(--sapFontHeader5Size);
    line-height: 1.2;
}

.dialog-body p {
    margin-bottom: 16px;
}

.dialog-body p:last-child {
    margin-bottom: 0;
}

.dialog-footer {
    padding: 10px;
    text-align: right;
    border-top: 1px solid var(--sapButton_BorderColor);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dialog-close-btn {
    margin-right: 10px;
    background: transparent;
    border:none;
    border-radius: 8px;
    padding: 5px 5px;
    font-size: var(--sapFontHeader6Size);
    font-weight: bold;
    cursor: pointer;
    color: var(--sapBrandColor);
}

.dialog-close-btn:hover {
    outline: 1px solid var(--sapButton_BorderColor);
}

.dialog-close-btn:focus {
    outline: 2px solid var(--sapButton_Active_BorderColor);
}

table, th, td {
    border: 0.5px solid;
    border-collapse: collapse;
}

.modal-body table thead tr th, .modal-body table tbody tr td {
    padding: 2px 10px 2px 10px;
}

