/* Vibrant Kanban Board Styles */

/* Remove Old Corkboard Styles */
.corkboard-container {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    margin-bottom: 2rem;
}

.corkboard-container::before {
    display: none;
}

/* Card Styling */
.mission-card {
    background-color: #ffffff;
    /* White Card */
    border: none;
    border-top: 6px solid #e5e7eb;
    /* Default Accent */
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    position: relative;
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* Accent Colors */
.mission-card.accent-purple {
    border-top-color: #a855f7;
}

.mission-card.accent-orange {
    border-top-color: #f97316;
}

.mission-card.accent-blue {
    border-top-color: #3b82f6;
}

.mission-card.accent-yellow {
    border-top-color: #eab308;
}

.mission-card.accent-green {
    border-top-color: #22c55e;
}

.mission-card.accent-red {
    border-top-color: #ef4444;
}

/* Typography Overrides */
.card-title {
    font-family: 'Sarabun', sans-serif;
    color: #000000 !important;
    /* Pure Black for Title */
}

.card-body-text {
    font-family: 'Sarabun', sans-serif;
    color: #374151 !important;
    /* Darker Grey (Gray 700) for Body */
    font-weight: 500;
}

/* Pagination Overrides */
.cork-pagination .page-link {
    background: #18181b;
    border-color: #27272a;
    color: #a1a1aa;
}

.cork-pagination .page-item.active .page-link {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}