/* Base Style (Raised) */
body { background-color: #f8f9fa; }

.main-container { min-height: 80vh; padding-top: 0px; }

.toggle-icon-btn {
    transition: all 0.2s ease;
    border-bottom: 3px solid #0d6efd; /* Adds to the 'raised' look */
}

/* Depressed State (When checked) */
.btn-check:checked + .toggle-icon-btn {
    background-color: #0d6efd;
    color: white;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2) !important; /* Inner shadow makes it look pushed in */
    border-bottom: 1px solid transparent;
    transform: translateY(2px); /* Moves the button down slightly */
}

/* Hover effect to enhance the feel */
.toggle-icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

input.form-control-plaintext {
    font-weight: bolder !important;
}

.menu-col {
    border: 1pt solid #0d6efd;
    border-radius: 10px;
    margin: 5px;
    padding: 8px;
    min-height: 150px;
    max-height: 150px;
    height: 150px;
}

.menu-col:hover {
    background-color: #0d6efd;
    color: white;
    font-weight: bolder !important;
}
.menu-icon {
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: darkorange;
}

.menu-name {

    font-size: 18px !important;
    text-align: center !important;
    margin-top: 8px;
}