.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border: 2px solid #ccc; /* Wyraźniejszy zewnętrzny border */
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ddd; /* Subtelne linie między komórkami */
    padding: 12px 10px; /* Większe odstępy dla czytelności */
    vertical-align: middle; /* Wyśrodkowanie pionowe treści */
}

.pricing-table th {
    background-color: #ff8b66; /* Wyraźny kolor nagłówków */
    color: white; /* Kontrastujący tekst w nagłówkach */
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #ff6e3a; /* Wyraźniejsze oddzielenie nagłówków */
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9; /* Delikatny szary dla wierszy parzystych */
}

.pricing-table tr:nth-child(odd) {
    background-color: #ffffff; /* Jasne tło dla wierszy nieparzystych */
}

.pricing-table tr:hover {
    background-color: #f4f4f4; /* Podświetlenie wiersza przy najechaniu */
    cursor: pointer; /* Efekt wskazujący na interaktywność */
}

button[type="submit"] {
    padding: 6px 12px; /* Większe przyciski */
    margin: 2px;
    border: 1px solid #ccc; /* Subtelny border dla przycisku */
    border-radius: 4px;
    cursor: pointer;
    background-color: #ff8b66; /* Domyślny kolor przycisku */
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #ff6e3a; /* Kolor przycisku po najechaniu */
    transform: scale(1.05); /* Subtelne powiększenie */
}

button[type="submit"][style*="red"] {
    background-color: red; /* Specjalny czerwony przycisk */
    color: white;
    border-color: darkred;
}

button[type="submit"][style*="red"]:hover {
    background-color: darkred; /* Ciemniejszy czerwony na hover */
}

/* Dodatkowe poprawki dla zewnętrznego otoczenia tabel */
table.pricing-table {
    margin: 0 auto; /* Wyśrodkowanie tabeli */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Dodanie subtelnego cienia */
    border-radius: 8px; /* Zaokrąglone rogi */
    overflow: hidden; /* Zapobieganie wystawaniu elementów */
}

.delete-btn {
    background-color: red !important;
    color: white !important;
    border-color: darkred !important;
}

.center-after-table {
    display: inline;
    text-align: center;
    margin-top: 20px;
}

.categories{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: px;
    height: 97px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    font-family: 'Jura';
    font-size: 18px;
    line-height: 22px;
}

.category-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: linear-gradient( 25deg, rgb(255, 183, 132) 0%, rgba(255, 165, 0, 0.1) 59%, transparent 100% );
    transition: width 0.3s ease, height 0.3s ease;
  }

  .category-btn:hover::before {
    width: 100%;
    height: 100%;
  }

  .isactive{
    background: linear-gradient( 25deg, rgb(255, 183, 132) 0%, rgba(255, 165, 0, 0.1) 59%, transparent 100% );
    transition: width 0.3s ease, height 0.3s ease;
    opacity: 1;
  }

  .services{
    background: #f5f5f5;
    max-width: 1200px;
    margin: auto;
    transition: width 0.3s ease, height 0.3s ease;
    margin-bottom: 73px;
  }

  .fade-in-up {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}


  .services p{
    background: #ececec;
    padding: 9px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #pricing{
    margin-top: 25px;
  }

  .priceSpan{
    background: #fea674;
    padding: 11px;
    font-weight: bold;
  }

/*  */

.iswrapped {
    display: none;
}

.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-form input[type="text"],
.pricing-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.pricing-form button {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-form button:hover {
    background-color: #005a87;
}

.pricing-form textarea {
    min-height: 80px;
    resize: vertical;
}

.widefat.fixed tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Jasny kolor dla nieparzystych wierszy */
}

.widefat.fixed tbody tr:nth-child(even) {
    background-color: #ffffff; /* Biały kolor dla parzystych wierszy */
}

.copy-button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.copy-button:hover {
    background-color: #005a87;
}
