@font-face {
    font-family: 'DINPro';
    src: url('https://moduulz.com/!assets/font/DINPro-Regular.ttf');
}

:root {
    --theme-max: #00b5d4;
    --theme-min: #384775;
    --theme-card-max: #1DDDFC;
    --theme-card-mid: #1DCDEB;
    --theme-card-low: #1DB5D5;
    --theme-card-min: #1590B0;
}

#dashCellHolder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1600px;
    margin: auto;
}
.dashContainer {
    font-family: 'DINPro', sans-serif;
    transition: transform 0.3s;
    margin: 12px min(24px, 1%);
    border-radius: 14px;
    width: 300px;
}
.dashContainer:hover {
    transform: scale(1.05);
}
.dashCell {
    background: linear-gradient(90deg, var(--theme-card-low) 0%, var(--theme-card-mid) 57%);
    border-radius: 14px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    width: 300px;
}
.dashCell span, .dashCell h3 {
    text-decoration: none;
    font-weight: normal;
    color: white;
}
.dashCell .innerRow {
    background: linear-gradient(90deg, var(--theme-card-min) 0%, var(--theme-card-low) 57%);
}
.dashCell .bottomRow, .dashCell .innerRow {
    display: flex;
    flex-direction: column;
}
.dashCell .headerRow {
    align-items: center;
    padding: 12px 16px;
    column-gap: 8px;
    display: flex;
}
.dashCell .headerRow img {
    width: 50px;
    height: 50px;
}
.dashCell .innerRow span {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
}
.dashCell .bottomRow span {
    padding: 12px 16px;
    text-align: right;
}

.homeBoxSect {
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 12px 0;
    display: flex;
    row-gap: 16px;
}
.homeSearch {
    padding-right: 30px;
    text-align: center;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
}
.homeSearchDiv {
    position: relative;
    display: grid;
    max-width: 500px;
    min-width: 242px;
    width: 50%;
}
.homeSearchIcon {
    pointer-events: none;
    position: absolute;
    padding: 8px;
    height: 20px;
    width: 20px;
    right: 0;
}

.welcomeHead {
    font-size: 28px;
}
#noticeBox {
    column-gap: 12px;
    display: flex;
}
.noticeDiv, .noticeBody{
    box-shadow: 1px 2px 4px var(--lght-shado);
    border: 1px solid var(--denim-row-hover);
    background: var(--denim-row);
    color: var(--text-color);
    padding: 12px 16px;
}
.noticeDiv {
    transition: opacity 0.2s;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    user-select: none;
    cursor: pointer;
    opacity: 0.7;
}
.noticeDiv.open {
    border-radius: 4px 4px 0 0;
    z-index: 11;
    opacity: 1;
}

.dashLink {
    background: var(--section-bg);
    max-width: 50%;
    padding: 4px;
}