/* Reset Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Top Navigation */
.top-nav {
    background: #007BFF;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.top-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-nav ul li {
    margin-right: 20px;
}

.top-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.admin {
    font-size: 18px;
}

/* Dashboard Menu */
.dashboard {
    padding: 30px;
    text-align: center;
}

/* Main Menu Boxes */
.menu-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.menu-box {
    width: 200px;
    height: 120px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-box i {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Colors */
.red { background: #dc3545; }
.blue { background: #007BFF; }
.light-blue { background: #17a2b8; }
.dark-blue { background: #343a40; }

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: #343a40;
    padding: 20px;
    border-radius: 10px;
}

.app-box {
    background: #28a745;
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.app-box i {
    font-size: 22px;
}

/* Hover Effects */
.menu-box:hover, .app-box:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
        align-items: center;
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
