body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
}

header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
}

.btn {
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: 500;
}

.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Task status styles */
.badge {
    padding: 6px 10px;
    font-weight: 500;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}