﻿/* Card container */
.employer-job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background: #fff;*/
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.2s;
}

    .employer-job-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* Text section */
.employer-job-info {
    flex: 1;
    min-width: 0;
}

.employer-job-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.employer-job-subtitle {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow icon */
.employer-job-arrow {
    color: #888;
    font-size: 1.2rem;
    margin-left: 12px;
    flex-shrink: 0;
}

.feedback-btn {
    font-size: 1.8rem;
    color: gray;
    cursor: pointer;
    transition: color 0.3s;
}

    .feedback-btn:hover {
        color: #007bff;
        cursor:pointer;
    }
