﻿.app-appbar-active.mud-chip-color-primary {
    background-color: var(--app-palette-appbar-chip-primary);
}

.mud-button-text.app-appbar-active {
    color: var(--app-palette-appbar-text-active);
}

.mud-appbar .mud-button {
    font-size: var(--app-typography-appbar-font-size);
    font-weight: var(--app-typography-appbar-font-weight);
    text-transform: none;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* Adjust the width as needed */
    width: auto;
}

.youtube-frame {
    width: 100%;
    margin: 0 auto;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--app-palette-footer-social);
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--app-palette-footer-social);
}

.footer-social-icon-inner {
    color: var(--app-palette-footer-social);
    transition: color 0.3s ease;
}

.footer-social-icon.footer-social-icon-ml:hover .footer-social-icon-inner {
    color: var(--app-palette-footer-social-ml-hover);
}

.footer-social-icon.footer-social-icon-yt:hover .footer-social-icon-inner {
    color: var(--app-palette-footer-social-yt-hover);
}

.footer-social-icon.footer-social-icon-ig:hover .footer-social-icon-inner {
    color: var(--app-palette-footer-social-ig-hover);
}

.modal-image {
    cursor: pointer;
}

.modal-image-dialog-background {
    background-color: var(--app-palette-dialog-background);
    backdrop-filter: blur(8px);
}

.parallax
{
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.project-presentation-title-caption
{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #00000000;
    transform: translateY(-50%);
}

.project-presentation-title-caption div.project-presentation-title-caption-border
{
    margin: 0 auto;
    width: fit-content;
    background: #00000000;
    background: linear-gradient(90deg, rgba(37, 55, 96, 0) 10%, rgba(37, 55, 96, 0.6) 25%, rgba(37, 55, 96, 0.6) 75%, rgba(37, 55, 96, 0) 90%);
    color: #FFFFFFFF;
    padding: 18px 120px;
}