/* ============================================
   СТИЛИ ДЛЯ ТАБЛИЦЫ ВАКАНТНЫХ ПЛОЩАДЕЙ
   ============================================ */

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.services-table th,
.services-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(248, 248, 247, 0.1);
    color: #f8f8f7;
}

.services-table th {
    background-color: rgba(245, 106, 3, 0.2);
    font-weight: 700;
    color: #f8f8f7;
}

.services-table tr:hover {
    background-color: rgba(248, 248, 247, 0.05);
}

.services-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   АДАПТИВНЫЕ СТИЛИ ДЛЯ ТАБЛИЦЫ
   ============================================ */

/* Планшеты (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .services-table {
        font-size: 0.9rem;
    }
    
    .services-table th,
    .services-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* Мобильные устройства (до 767px) */
@media (max-width: 767px) {
    .services-table {
        font-size: 0.7rem !important;
    }
    
    .services-table th,
    .services-table td {
        padding: 0.5rem 0.3rem !important;
        font-size: 0.7rem !important;
    }
    
    .services-table .f-s_150,
    .services-table th.f-s_150 {
        font-size: 0.75rem !important;
    }
    
    .services-table .f-s_140,
    .services-table td.f-s_140 {
        font-size: 0.7rem !important;
    }
    
    .services-table .price-button {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
}

