/* Jobs Page Styles */
.btn-albamong-floating {
    position: fixed !important;
    bottom: 90px !important;
    right: 20px !important;
    left: auto !important;
    transform: none !important;
    background-color: #EB5244 !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 12px rgba(235, 82, 68, 0.4) !important;
    z-index: 2147483647 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    font-weight: 700 !important;
    overflow: hidden !important;
    width: auto !important;
    max-width: 200px !important;
}

.btn-albamong-floating:hover {
    background-color: #D14539;
    transform: translateY(-2px);
}

.btn-icon-normal {
    display: inline-block;
    font-size: 18px;
}

.btn-icon-shrunk {
    display: none;
    font-size: 24px;
}

.btn-text {
    white-space: nowrap;
    opacity: 1;
}

.btn-albamong-floating.shrunk {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
}

.btn-albamong-floating.shrunk .btn-icon-normal {
    display: none;
}

.btn-albamong-floating.shrunk .btn-icon-shrunk {
    display: block;
}

.btn-albamong-floating.shrunk .btn-text {
    display: none;
    opacity: 0;
    width: 0;
}

@media (max-width: 640px) {
    .btn-albamong-floating {
        bottom: 85px;
        right: 16px;
    }
}

/* Jobs Grid */
.jobs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .jobs-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Job Card */
.job-card {
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #EB5244;
}

.job-link {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.job-type-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.job-type-badge.hiring {
    background: #fee2e2;
    color: #dc2626;
}

.job-type-badge.seeking {
    background: #e0f2fe;
    color: #0284c7;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 12px;
}

.job-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.detail-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.job-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-time {
    font-size: 12px;
    color: #94a3b8;
}

.job-view-btn {
    font-size: 13px;
    font-weight: 700;
    color: #EB5244;
}