/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --font-primary: system-ui, -apple-system, BlinkMacSystemFont,
                    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
                    "Open Sans", "Helvetica Neue", sans-serif;
    --theme-red: #cc0000;
    --theme-deep-red: #8b0000;
    --theme-tint-red: #fff5f5;
    --theme-dark: #181818;
    --theme-dark-hov: #151515;
    --theme-light-red: #fbeaea;
    --theme-light: #f8f9fa;
    --theme-light-gray: #888;
    --theme-light-blue: #eff2f6;
    --theme-gray: #555;
    --theme-lr-gray: #333;
    --theme-md-blue: #374151;
    
}

/* ===== Body Defaults ===== */
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--theme-dark);
    background-color: var(--theme-light);
}




/* ZOOMABLE */
.zoomable{
    cursor: zoom-in;
}
.img-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.img-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.5)
    }

    to {
        transform: scale(1)
    }
}

.img-modal .close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}