﻿body {
}
h1, .h1 {
    font-size: calc(1.375rem + 3.5vw);
    font-weight: bold;
    font-family: "Raleway", sans-serif;
}

.box {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
}

.icon {
    background: #000000;
    color: #f4c726;
    border-radius: 10px;
    display: inline-block;
    font-size: 30px;
    padding: 8px;
}

.flex-grow-1 li{
    padding-left: 2%;
}

.icon-box {
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    width: 90%;
    justify-items: center;
}

    .icon-box .icon {
        margin: 20px;
    }

.iconStyle {
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
}


/* PO overlay styles */
.layout-overlay {
    position: fixed;
    padding: 15px;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    z-index: 3;
}

/* General overlay styles */
.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Spinner container */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

/* Fullscreen overlay container */
.fullscreen-overlay {
    position: fixed;
}

/* Example div for specific overlay */
.target {
    position: relative;
    width: 300px;
    height: 200px;
    border: 1px solid #ccc;
    margin: 20px auto;
    background: #f5f5f5;
}