.approver-field-locations {
    padding: 50px 0;
}

.approver-field-locations .page-header {
    margin-bottom: 30px;
}

.approver-field-locations .page-header h1 {
    margin-bottom: 10px;
}


/* Grid */

.field-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* Card */

.field-location-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}


/* Header */

.field-location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.field-location-card-header h2 {
    margin: 0 0 8px;
    font-size: 22px;
}


/* Status */

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}


/* Information */

.location-info {
    margin-bottom: 15px;
}

.location-info strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: #555;
}

.location-info p {
    margin: 0;
    line-height: 1.5;
}


/* Actions */

.field-location-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}


/* Reject box */

.reject-box {
    margin-top: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.reject-box-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}


/* Empty */

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border-radius: 10px;
}


/* Responsive */

@media (max-width: 768px) {

    .field-location-grid {
        grid-template-columns: 1fr;
    }

    .field-location-card {
        padding: 20px;
    }

}