  /* Basic Page Setup */
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
        }

        /* Sidebar Menu */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 60px; /* Initially show only icons */
            background-color: #343a40;
            color: white;
            padding-top: 30px;
            transition: all 0.3s ease;
            overflow: hidden;
            z-index: 1;
        }

        .sidebar:hover {
            width: 250px; /* Expand the sidebar */
        }

        .sidebar a {
            color: white;
            padding: 10px 15px;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: 0.3s;
            font-size: 20px;
        }

        .sidebar a i {
            min-width: 40px;
            text-align: center;
        }

        .sidebar a span {
            display: none;
        }

        .sidebar:hover a span {
            display: inline-block;
        }

        .sidebar a:hover {
            background-color: #575757;
        }

        /* Right Expanding Div */
        .right-div {
            position: fixed;
            top: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background-color: #343a40;
            color: white;
            transition: width 0.3s ease;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .right-div .toggle-icon {
            position: absolute;
            top: 10px;
            left: -20px;
            font-size: 30px;
            cursor: pointer;
        }

        .right-div.expanded {
            width: 400px;
        }

        .right-div .content {
            display: none;
            padding: 10px;
        }

        .right-div.expanded .content {
            display: block;
        }

        /* Bottom Expanding Div */
        .bottom-div {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background-color: #343a40;
            color: white;
            transition: height 0.3s ease;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .bottom-div .toggle-icon {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 25px;
            cursor: pointer;
            transition: bottom 0.3s ease;
        }

        .bottom-div.expanded {
            height: 300px;
        }

        .bottom-div.expanded .toggle-icon {
            bottom: 290px; /* Moves icon to top when expanded */
        }

        .bottom-div .content {
            display: none;
            padding: 10px;
        }

        .bottom-div.expanded .content {
            display: block;
        }

        /* Center Div */
       .center-div {
            width: 95%;
            height: 100%;
            background-color: red;
            color: white;
            position: fixed;
            left: 70px;
        }
  .dashboard-card {
            border: 2px solid #ddd;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .dashboard-card .card-header {
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        .dashboard-card .card-body {
            font-size: 1.5rem;
            color: #333;
        }
        .table th, .table td {
            vertical-align: middle;
}
.order_place {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100;
}

.menu {
    position: fixed;
    width: 270px;
    height: 100%;
    border-right: 2px solid black;
}

.ormenu {
    background: #353848;
    color: white;
}
.tbs {
    position: fixed;
    width: 61%;
    height: 90%;
    overflow-y: scroll;
    right: 0px;
    top: 50px;
}

.ofetch{
    color: white;
    width: 90%;
    margin: auto;
    position: relative;

}

.ofetch img,.ofetch .otext{
    display: inline-block;
    vertical-align: top;
}

.otext{
    width: 50%;
    text-align: center;
}

.full-div {
            width: 100%;
            height: 100%;
            z-index: 9999;
            padding: 20px;
            background: #f0f0f0;
            border: 1px solid #ccc;
            text-align: center;
            margin-top: 20px;
        }
        .start-btn {
            padding: 10px 20px;
            background: #28a745;
            color: white;
            border: none;
            cursor: pointer;
        }