:root {
    --theme-pink: #ff7597;
    --theme-pink-hover: #e66885;
}

.bg-pink {
    background-color: var(--theme-pink) !important;
    color: white !important;
}

.text-pink {
    color: var(--theme-pink) !important;
}

.btn-pink {
    background-color: var(--theme-pink);
    color: white;
    border: none;
}

.btn-pink:hover {
    background-color: var(--theme-pink-hover);
    color: white;
}

/* Pengaturan Sidebar */
#sidebar {
    min-height: 100vh;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar-link {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: var(--theme-pink);
    color: white;
}