#pt-tenders-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 20px auto;
}

#pt-map-controls {
    display: flex;
    gap: 20px;
    background: #1B5E20; /* Deep Green */
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: bold;
}

.filter-group input {
    padding: 8px;
    border-radius: 4px;
    border: none;
}

#btn-apply-filters {
    background: #8BC34A; /* Light/Lime Green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#btn-apply-filters:hover {
    background: #9CCC65;
}

#pt-map-wrapper {
    box-shadow: 0 4px 15px rgba(0,70,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

#pt-results-table-wrapper {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#pt-results-table th {
    background: #f8f9fa;
    color: #1B5E20;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #8BC34A;
}

#pt-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
}

#pt-results-header .button {
    text-decoration: none;
    background: #e8f5e9;
    color: #1B5E20;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

#pt-results-header .button:hover {
    background: #c8e6c9;
}

#pt-results-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

#pt-results-table tr:hover {
    background-color: #f1f8e9;
}

.view-results #pt-map-controls {
    background: #f1f8e9;
    color: #1B5E20;
    border: 1px solid #c8e6c9;
}

.view-results #pt-map-controls label {
    color: #1B5E20;
}

.view-results #pt-map-controls input {
    border: 1px solid #a5d6a7;
}

#pt-results-header h2 {
    color: #1B5E20;
    border-left: 4px solid #8BC34A;
    padding-left: 15px;
    margin: 0;
}
