.ipm-container {
    margin: 0 auto;
    padding: 20px;
}

.ipm-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .ipm-map-container {
        grid-template-columns: 1fr;
    }
}

#poland-map {
    width: 100%;
    position: relative;
}

#poland-map svg {
    width: 100%;
    height: auto;
}

#poland-map #wojewodztwa path {
    fill: #E8F0F3;
    stroke: #919FA3;
    stroke-width: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#poland-map #wojewodztwa path:hover {
    fill: #0073F5;
}

#poland-map #wojewodztwa path.active {
    fill: #0073F5;
}

#poland-map #etykiety path {
    fill: #004899;
    stroke: none;
	stroke-width: 0px!important;
    pointer-events: none;
    transition: fill 0.3s ease;
}

#salespeople-list {
    background: #fff;
    max-height: 600px;
    overflow-y: auto;
}

.salesperson-card {
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salesperson-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.salesperson-content {
    display: flex;
	align-items: center;
    gap: 20px;
}

.salesperson-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.salesperson-info {
    flex: 1;
}

.salesperson-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #004899;
}

.salesperson-position {
    color: #004899;
    font-size: 14px;
    margin-bottom: 10px;
	font-weight: bold;
}

.salesperson-details {
    color: #404A56;
    font-size: 14px;
    line-height: 1.4;
}

.salesperson-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.contact-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #404A56;
}