﻿.dropdownLayers {
    position: absolute;
    z-index: 10;
    left: 20px;
    bottom: 410px;
}

.app-card {
    display: inline-block;
    width: 240px;
    height: 300px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    padding: 20px;
    margin: 10px;
    color: inherit;
    transition: transform 0.2s;
}

.app-card:hover {
    transform: translateY(-10px);
}

.app-icon img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    margin: 0 auto 0 auto;
    display: block;
    padding: 3px;
}

.app-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    margin-top: 10px;
    height: 48px; /* height for two line */
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.app-description {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #555;
    margin-top: 13px;
    height: 48px; /* height for two line */
    line-height:1.4;
}

.launch-button {
    background-color: #05406b;
    color: white;
    border-radius: 8px;
    padding: 7px;
    font-weight: 600;
    width: 200px;
    margin: 0 auto;
    margin-top: 17px;
}

.email-tag {
    display: inline-block;
    width: fit-content;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    margin: 10px;
    color: inherit;
    transition: transform 0.2s;
    height: 25px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
}

.email-tag:hover {
    transform: translateY(-3px);
}

.drawer-item-compact {
    display: flex;
    align-items: center;
    height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    min-height: 0;
    box-sizing: border-box;
    color: #165a72;
}

.valueboxOutput {
    appearance: none; /* Removes default browser styling for some input types */
    -webkit-appearance: none; /* For Webkit browsers */
    -moz-appearance: none; /* For Mozilla browsers */
    outline: none; /* Removes the blue outline on focus */
    border: 1px solid #ccc; /* Keeps the border */
    border-radius: 3px; /* Optional: remove rounded corners */
    background: white; /* Optional: flat background */
    background-color: #edefef;
}

.valueboxInput {
    appearance: none; /* Removes default browser styling for some input types */
    -webkit-appearance: none; /* For Webkit browsers */
    -moz-appearance: none; /* For Mozilla browsers */
    outline: none; /* Removes the blue outline on focus */
    border: 1px solid #ccc; /* Keeps the border */
    border-radius: 3px; /* Optional: remove rounded corners */
    background: white; /* Optional: flat background */
    background-color: #e9f5f9;
}

.k-toolbar {
    background-color: #05406b !important;
    color: #edefef !important;
    border-color: transparent;
    display: flex;
    align-items: center;
    padding: 0px;
}

