
.navbar {
    background-color: #03245B;
    color: white;
}

.navbar a {
    color: white;
    margin-left: 15px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: left;
    padding: 15px;
    background-color: #fff;
}

    .card:hover {
        transform: translateY(-5px);
    }

.task-table {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 20px;
}

.btn-custom {
    background-color: #03245B;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

    .btn-custom:hover {
        background-color: #172554;
    }

.footer {
    color: #6B7280;
    text-align: center;
    padding: 10px 0;
    background-color: #F1F5F9;
}

.filter-group {
    margin-bottom: 15px;
}

.badge {
    font-size: 0.9rem;
    padding: 5px 10px;
}

.text-primary {
    color: #03245B !important;
}

body {
    background-color: #F3F4F6;
}

.table-bordered {
    border: 1px solid #DEE2E6;
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #DEE2E6;
    }

.table thead th {
    border-bottom: none;
}

.welcome-text {
    font-weight: bold;
    color: black;
}

.tasks-header {
    color: black;
}

.status-icon {
    margin-right: 5px;
}

.card-icon {
    font-size: 1.5rem;
    color: #03245B;
    margin-right: 10px;
    vertical-align: middle;
}

.card-title {
    font-size: 1.1rem;
    color: #03245B;
    margin-bottom: 5px;
}

.card-text {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
}


.custom-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .custom-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.icon-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #4b4bff;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4b4bff;
    border: none;
    font-weight: 500;
    padding: 10px;
    border-radius: 6px;
}

    .btn-primary:hover {
        background-color: #03245B;
    }

.custom-task-table th {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #eaeaea;
}

.custom-task-table td {
    font-size: 0.9rem;
    vertical-align: middle;
    border-top: 1px solid #f0f0f0;
}

/* Status Pills */
.status-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

    .status-pill.in-progress {
        background-color: #f0f2f8;
        color: #3b57d5;
    }

    .status-pill.to-do {
        border: 1px solid #ffb84d;
        color: #e08c00;
        background-color: #fff;
    }

.badge.bg-primary {
    background-color: #4b4bff !important;
}

/* Card Styling */
.card {
    border: 1px solid #e2e6ea;
    border-radius: 10px;
}

/* Add Task Button */
.btn-primary {
    background-color: #4b4bff;
    border: none;
}

    .btn-primary:hover {
        background-color: #03245B;
    }

