/* Apple-inspired minimalist theme */
.apple-theme {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1d1d1f;
    background-color: #f5f5f7;
}

.sidebar {
    background-color: #ffffff;
    border-right: 1px solid #d2d2d7;
    height: 100vh;
    padding: 20px;
}

.nav-link {
    color: #1d1d1f;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: #0071e3;
    color: white !important;
}

.btn-primary {
    background-color: #0071e3;
    border-color: #0071e3;
}

.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

/* Smooth transitions */
.sidebar, .nav-link, .card {
    transition: all 0.3s ease;
}

/* Minimalist form controls */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #d2d2d7;
    padding: 10px 15px;
}

/* Apple-like alerts */
.alert {
    border-radius: 8px;
}