.top-secret-text {
    font-family: 'Special Elite', cursive; /* Change to your "top secret" font */
    transform: rotate(-7deg); /* Adjust the tilt */
    display: inline-block; /* Needed for transform */
    font-size: 64px; /* Adjust size as needed */
    color: #ff4040; /* Adjust color as needed */
}



.banner-text-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    font-weight: bold;
    flex-direction: column;
    color: white; 
    font-size: xx-large; 
    font-family: 'Courier New', monospace; 
    padding: 50px
}

.responsive-image {
    max-width: 100%;
    height: auto;
}



.tilt-background {
    background: linear-gradient(to right, var(--color-start), var(--color-end));
    color: #fff;
    position: relative;
    z-index: 1;
}
.tilt-background:after {
    background: inherit;
    bottom: 0;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    transform: skewY(var(--tilt-angle));
    transform-origin: 100%;
    z-index: -5;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.use-case-card {
    border-radius: 10px;
}

.pricing-card {
    border-radius: 10px;
}



.connect-section {
    background: linear-gradient(to right, #cdcdcd, #d0d0d0);
    color: #fff;
    position: relative;
    z-index: 1;
}

.vertical-center {
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricing-section {
    background: linear-gradient(to right, #71ddff, #61cdfd);
    color: #fff;
    position: relative;
    z-index: 1;
}

.mud-nav-link-text {
    font-size: medium;
}



.highlight-banner {
    background-color: var(--mud-palette-surface);
    border-radius: var(--mud-default-borderradius, 8px);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    display: flex;
    flex-direction: column;
    margin: 24px 0;
    overflow: hidden;
    padding: 24px;
}

.banner-content {
    flex: 1;
}

.highlight-banner-image {
    display: none;
    align-self: center;
    margin-top: 24px;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

    .highlight-banner-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    
.highlight-steps {
    list-style-type: none;
    padding-left: 0;
}
    
    
.highlight-steps li {
    color: var(--mud-palette-text-primary);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.highlight-steps li::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f111'; /* Unicode for a solid circle */
    font-weight: 500; /* Needed for solid icons */
    color: var(--mud-palette-primary);
    font-size: 10px; /* Adjust size as needed */
    position: absolute;
    left: 0;
    top: 4px; /* Adjust vertical alignment as needed */
}

.highlight-banner-image {
    display: none;
}


    @media (min-width: 960px) {
        .highlight-banner {
            flex-direction: row;
        }

        .highlight-banner-image {
            display: flex;
            margin-top: 0;
            margin-left: 24px;
        }
    }





.use-case-card {
    transition: all 0.3s ease;
}

.card-content {
    background-color: var(--mud-palette-surface);
    transition: background-color 0.3s ease;
}

.hover-effect:hover .card-content {
    background-color: var(--mud-palette-background-grey, #dfdfff);
}




.custom-table-header {
    background-color: var(--mud-palette-surface);
}

.custom-table-header .mud-table-cell {
    color: var(--mud-palette-text-secondary);
    font-weight: bold;
}

.custom-table-header .mud-table-cell {
    border-bottom: 2px solid var(--mud-palette-lines-default);
}


.button-h-gap {
    gap: 8px;
}

/* DEPRECATED: replaced by inline icon in Phase 2A-2 */
.appbar-image {
    height: 100%;
    width: 100%;
    background-image: url('/img/Zentrum-Logo1-Orange.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* DEPRECATED: replaced by inline icon in Phase 2A-2 */
.mud-theme-dark .appbar-image {
    background-image: url('/img/Zentrum-Logo1-White.png');
}
