.btn-rounded {
    border-radius: 2rem !important;
}


.mnt-card-body {
    max-height: calc(100vh - 150px);
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
    
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .mnt-card-body {
        max-height: calc(100vh - 110px);
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    
}

/* XXL devices (≥1400px) */
@media (min-width: 1400px) {
 
}

@font-face {
    font-family: Poppins;
    src: url('font/Poppins-Regular.ttf');
}

:root {
    --rz-link-color: #b7d5e5 !important;
    --rz-layout-body-padding: 0.25rem !important;
    --rb-panel-background-color: #fff;
    --rb-panel-border: 0.5rem;
    --rb-panel-padding: 0.5rem;
    --rz-text-font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

html, body {
    font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}

.rz-body {
    background-image: url('image/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rz-body {
    overflow: hidden !important;
}

.rz-icon {
    color: #74a6d1;
}

.ui-card {
    border-radius: 0.5rem;
    border: 1px solid #dddddd;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.ui-card-header {
    background-color: #f5f5f5;
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: 1px solid #dddddd;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
    flex-grow: 0;
}

.ui-card-body {
    padding: 10px;
    flex-grow: 0;
    overflow-y: hidden;
    display: flex;
}

.ui-card-footer {
    background-color: #f5f5f5;
    border-radius: 0 0 0.5rem 0.5rem;
    border-top: 1px solid #dddddd;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
    flex-grow: 0;
}

.btn-primary {
    background-color: #ADD2FF;
    border-color: #ADD2FF;
}

.btn-primary:hover {
    background-color: #86B6FE;
    border-color: #86B6FE;
}

.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);
}

.glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
    inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}



