select.form-control option {
  color: #000 !important;
  background: #fff !important;
}

/* DARK MODE GLOBAL */
body {
    background: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

/* CARD */
.job-card {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    margin-bottom: 18px;
    transition: 0.2s;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* TITLES */
.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

/* PRICE */
.job-price {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
}

/* CATEGORY */
.job-category {
    font-weight: bold;
    color: #8f9cff;
}

/* VIEW DETAILS BUTTON */
.btn-view {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px;
    background: #8f9cff;
    color: #000;
    font-weight: bold;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    text-decoration: none;
}

.btn-view:hover {
    background: #bcbcff;
}

.complete-btn {
    background: linear-gradient(135deg, #ff4d4d, #d61f1f);
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255,0,0,0.3);
    transition: 0.2s;
}

.complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,0,0,0.4);
}

.complete-btn:active {
    transform: scale(0.98);
}