* {
    font-family: 'Inter', sans-serif;
}


.small-sroller::-webkit-scrollbar {
    width: 3px;
    height: 2px;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb {
    background: rgb(176, 156, 145);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(234 88 12);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fc;
}

.cursor-pointer{
    cursor: pointer;
}

.header {
    background: linear-gradient(90deg, #4e73df 0%, #1cc88a 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.activity-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.activity-item .dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.activity-item .dot.green {
    background-color: #1cc88a;
}

.activity-item .dot.blue {
    background-color: #36b9cc;
}

.activity-item .dot.purple {
    background-color: #6f42c1;
}

.activity-item .dot.orange {
    background-color: #f6c23e;
}

.activity-item .dot.red {
    background-color: #e74a3b;
}