@import url("./dashboard.css");
body {
    padding: 0 34px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 18px;
    margin-top:0px;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}


body > .main {
    display: block;
    min-width: 560px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background: none;
    border:none;
    box-shadow: none;
}

body > header {
    background: none;
    display: block;
    width: 99%;
    margin: auto;
    height: 90px;
    padding: 0px !important;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: none;
}
body::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(225 225 225 / 77%);
    z-index:-1;
}
header .logoLauncher {
    width: 80%;
    float: left;
    height: 91px;
    padding-top: 10px;
}
header .logoLauncher img{
    max-height: 124px;
}
header .header-utils {
    width: 20%;
    float: left;
    padding-top: 20px;
    text-align: right;
}

body > footer {
    background: rgb(255 255 255 / 70%);
    border-radius: 10px;
    display: block;
    width: 90%;
    padding: 10px;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: none;
    text-align: left;
    font-weight: 600;
    letter-spacing: .3px;
    position: absolute;
    bottom: 100px;
}

.dashboardContainer {
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

header .appVersion {
    padding-top: 40px;
    font-size: 13px;
    font-style: italic;
    color: #a0a0a0;
}

.grid-stack-item-content {
    cursor: pointer;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styling for grid items */
.grid-stack-item-content h4 {
    padding: 10px;
    border-radius: 5px 5px 0 0;
    margin: -10px -10px 10px -10px;
}

.grid-stack-item-content p {
    margin: 0;
}

.grid-stack h4 {
    font-size: 14px;
    color:#fff;
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 5px;
}

/* Styles for selection buttons */
.selectionContainer {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.selectionContainer button {
    background-color: #00599c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-right:10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.selectionContainer button:hover {
    background-color: #003f6b;
}

#designsButton{
    background-color:#B33135
}
.iconcontainerTM,.iconcontainerES {
    position: relative;
    display: inline-flex;
    background-color: #0000001f;
    border-radius: 10px;
    box-shadow: #00000070 0px 0px 5px 0px;
}
.iconcontainerTM img,.iconcontainerES img{
    cursor:pointer;
}
/*.exclamation-icon {*/
/*    background-image:url("../img/info.png");*/
/*    display: block;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    font-size: 10px;*/
/*    font-weight: bold;*/
/*    color: #000;*/
/*    background-color: #fff;*/
/*    border-radius: 50%;*/
/*    border: 1px solid #000;*/
/*    text-align: center;*/
/*    line-height: 15px;*/
/*    margin-left: 5px;*/
/*    position: relative;*/
/*    top: -12px;*/
/*    right: 10px;*/
/*}*/

.tooltip-text {
    font-size: 14px;
    padding: 20px;
    visibility: hidden;
    width: 450px;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: 80px;
    left: 40px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s;
    overflow: auto;
    border: 1px solid #b3d8fd;
    box-shadow: #b3d8fd42 5px 6px 13px 0px;
}
.tooltip-text h6{
    font-size:14px;
}
.iconcontainerTM img,
.iconcontainerES img{
    width:35px;
}
.iconcontainerES .tooltip-text{
    height:170px;
}
.iconcontainerTM .tooltip-text{
    height: 285px;
}
.iconcontainerTM .tooltip-text,
.iconcontainerES .tooltip-text {
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
    transition-delay: 0.5s; /* Delay before hiding */
}
.iconcontainerTM:hover .tooltip-text ,
.iconcontainerES:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}
#TMTooltipInfo,#ESTooltipInfo {
    display: none;
}




