body {
    font-family: Arial, sans-serif;
}

.ats-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.ats-form,
.ats-filter-form {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.ats-form input,
.ats-form select,
.ats-form textarea,
.ats-filter-form input,
.ats-filter-form select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.ats-form button,
.ats-filter-form button {
    padding: 12px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.ats-table {
    width: 100%;
    border-collapse: collapse;
}

.ats-table th,
.ats-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.ats-table th {
    background: #f5f5f5;
}

.ats-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.ats-stat-box {
    flex: 1;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}