.popup-tabs-container {
  font-size: 13px;
  line-height: 1.4;
  padding-top: 4px;
}

.popup-tabs-header {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}

.popup-tab {
  padding: 6px 12px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s;
}

.popup-tab.active {
  background: white;
  font-weight: bold;
  border-color: #aaa;
  position: relative;
  top: 1px;
}

.popup-tab-panel {
  display: none;
  padding: 8px 4px;
}

.popup-tab-panel.active {
  display: block;
}

.status-btn {
  background: white;
  color: #d32f2f;
  border: 2px solid #d32f2f;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.show-plans-btn {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsywność – małe ekrany */
@media (max-width: 500px) {
  .popup-tabs-header {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .popup-tab {
    padding: 6px 10px;
    font-size: 12.5px;
  }
}