h1, h2, h3, h4, h5 {
    margin: 0;
}
.small {
    font-size: .7rem;
    color: gray;
}
input:focus {
    outline: none !important;
    box-shadow: none !important;
}
label {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #808080;
}

body {
    background: #f8f9fa;
    min-height: 100vh;
}
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.progress {
    height: 8px;
}
.trend-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}
.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.dropdown-toggle::after {
    display: none;
}
.card>a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
.keyboard-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    max-width: 100%;
    margin-top: auto !important;
}
.keyboard {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
    flex: 2 1 auto!important;
    /* max-width: 800px; */
}
.numpad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.key {
    /* width: 50px;
    height: 50px; */
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    cursor: pointer;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 5px;
    user-select: none;
    align-items: center;
    justify-content: center;
    display: flex;
}
.key.letter {
    aspect-ratio: 1/1;
}
.key:hover {
    background-color: #e9ecef;
}
.key.delete {
    grid-column: span 2;
    width: auto;
}
.key.space {
    grid-column: span 8;
    width: auto;
}
.key.space, .key.delete {
    min-height: 70px;
}
.key.delete {
    background-color: rgb(239, 187, 187);
}
.key.enter {
    background-color: rgb(167, 176, 221);
}
.key.control {
    background-color: rgb(192, 192, 192);
}
.key.zero {
    /* grid-column: span 10; */
    width: auto;
}
.key.enter {
    grid-row: span 2;
    width: auto;
}
