:root {
    --md-sys-color-primary: #6750A4;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-color-background: #FFFBFE;
    --md-sys-color-on-background: #1C1B1F;
    --md-sys-color-surface-variant: #E7E0EC;
    --ghost-color: 0, 0, 0; 
}
[data-bs-theme="dark"] {
    --md-sys-color-primary: #D0BCFF;
    --md-sys-color-on-primary: #381E72;
    --md-sys-color-background: #121212; 
    --md-sys-color-on-background: #E6E1E5;
    --md-sys-color-surface-variant: #49454F;
    --ghost-color: 255, 255, 255; 
}
html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    font-family: 'Roboto', sans-serif;
}
main {
    flex: 1 0 auto;
}
.navbar {
    background-color: var(--md-sys-color-surface-variant) !important;
}
.navbar-brand, .nav-link, .navbar-toggler {
    color: var(--md-sys-color-on-background) !important;
}
.btn-md3 {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-radius: 20px;
    border: none;
    padding: 10px 24px;
}
.btn-md3:hover {
    background-color: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-on-primary-container);
}
#simulation-text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    transition: filter 0.1s ease, text-shadow 0.1s ease;
}
.camera-container {
    position: relative;
    width: 100%;
    max-width: 400px; 
    margin: 0 auto;
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
    border-radius: 12px;
}
canvas#camera-output {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery-img {
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: cover;
    height: 250px;
    width: 100%;
}
.gallery-img:hover {
    transform: scale(1.02);
}
.text-facebook { color: #1877F2; }
.text-instagram { color: #E4405F; }
.text-twitter { color: #1DA1F2; }
.text-youtube { color: #FF0000; }
.text-flickr { color: #0063DC; }
html[data-bs-theme="dark"] .hide-in-dark-mode {
    display: none !important;
}
html[data-bs-theme="light"] .hide-in-light-mode {
    display: none !important;
}
.navbar-logo {
    height: 1.5rem; 
    width: auto;    
    vertical-align: middle; 
    image-rendering: -webkit-optimize-contrast; 
}
#share-fab {
    position: fixed; 
    bottom: 25px; 
    right: 25px;  
    z-index: 1050; 
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
}
#share-fab:active {
    transform: scale(0.95);
}
        .btn-circle {
            width: 70px;       
            height: 70px;      
            padding: 0;        
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;    
            transition: transform 0.1s;
        }
        .btn-circle:active {
            transform: scale(0.95); 
        }