body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f5f7;
    display: flex;
    flex-direction: column;
}

.navbar {
    width: 100%;
    height: 60px;
    background-color: #007bff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    justify-content: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 28px; /* Larger font size for prominence */
    font-weight: 900; /* Extra bold text */
    color: #007bff; /* Bright, standout color */
    text-transform: uppercase; /* Uppercase for a strong impact */
    letter-spacing: 3px; /* Wider letter spacing */
    margin-right: 40px; /* Spacing from other navbar items */
    padding: 8px 16px; /* Padding for a button-like appearance */
    border: 2px solid #007bff; /* Border matching the text color */
    border-radius: 50px; /* Rounded edges for a pill-shaped effect */
    background: #ffffff; /* White background for contrast */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.navbar-brand:hover {
    background-color: #007bff; /* Change background on hover */
    color: #ffffff; /* Change text color on hover */
    cursor: pointer; /* Pointer cursor on hover */
}



.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.menu-btn i {
    font-size: 24px;
}

.summa {
    border: 2px solid white; 
    border-radius: 5px;
}
.summavelia{
    padding-right: 30px;
}


.navbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.navbar-links li {
    margin-left: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sidebar {
    width: 250px;
    background-color: #333;
    height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
    padding-top: 20px;
    color: white;
    transition: transform 0.3s ease;
    z-index: 999;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px 20px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.sidebar ul li.active,
.sidebar ul li:hover {
    background-color: #444;
}

.sidebar ul li.active a {
    font-weight: 700;
}

.main-content {
    margin-left: 250px;
    padding: 80px 40px;
    background-color: #f4f5f7;
    flex-grow: 1;
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    /* position: fixed;
    padding-left: 320px; */
}

.dashboard-header {
    padding: 20px 0;
}

.dashboard-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.dashboard-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.status-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.status-text {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.status-ok {
    color: #4caf50;
}

.status-error {
    color: #f44336;
}

.status-loading {
    color: #ff9800;
}

.refresh-button {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.refresh-button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 80px 20px;
    }
}


