﻿.dashboard-card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .dashboard-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

.sidebar {
    width: 240px;
    min-height: 100vh;
    background-color: #343a40;
    color: white;
    position: fixed;
    right: 0;
    top: 0;
    padding-top: 20px;
}

    .sidebar a {
        display: block;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-bottom: 1px solid #495057;
    }

        .sidebar a:hover,
        .sidebar a.active {
            background-color: #495057;
        }

.main_content {
    margin-right: 240px;
    padding: 20px;
}

.sidebar .logo {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: bold;
}