.text-menu-verinf{
    font-size: 10px;
}

.cursor-na{
    cursor: not-allowed;
}
.cursor-help{
    cursor: help;
}
.header-fix{
  position: fixed;
}

.disable-selection {
    -webkit-user-select: none;   /* Safari */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Standard */
    -webkit-touch-callout: none; /* iOS Safari */
}

/* made with love note */
.made-with-love {
  font-family: 'Overpass', 'Source Sans Pro', Helvetica, sans-serif; /* taki sam font jak w logo */
  font-weight: 700; /* dopasowane do logo */
  font-size: 1em;
  color: rgba(255, 255, 255, 0.3); /* kolor taki jak w .copyright wykonany na podstawie pliku */
  text-transform: uppercase; /* automatyczne caps lock */
  text-align: center;
  padding: 1em 0;
  letter-spacing: 0.1em;
  user-select: none;
  cursor: default;
  margin-top: 2em;
  cursor: cell;
}

/* popups */
.popup-overlay {
  display: none; 
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 41, 67, 0.85); 
  z-index: 100000;
  justify-content: center;
  align-items: center;
}

.popup {
  background: #2a2f4a; 
  padding: 2em;
  max-width: 30em;
  border: 2px solid #9bf1ff;
  border-radius: 5px;
  box-shadow: 0 0 2em rgba(155, 241, 255, 0.5);
  color: #fff;
  text-align: center;
}

.popup h3 {
  margin-bottom: 1em;
  font-weight: 600;
}


.popup-info {
  border-color: #9bf1ff;
  box-shadow: 0 0 2em rgba(155, 241, 255, 0.5);
}

.popup-confirm {
  border-color: #6fcf97; 
  box-shadow: 0 0 2em rgba(111, 207, 151, 0.6);
}

.popup-cancel {
  border-color: #eb5757; 
  box-shadow: 0 0 2em rgba(235, 87, 87, 0.6);
}

.popup-warning {
  border-color: #f2994a; 
  box-shadow: 0 0 2em rgba(242, 153, 74, 0.6);
}

/* Kontener przycisków */
.popup-buttons {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  gap: 1em;
}

/* idcard */
.idcard {
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  background-color: #242943;
  color: #f4f4ff;
  width: 320px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(33, 46, 106, 0.7);
  padding: 1.5em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  user-select: none;
}

.idcard::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(155, 241, 255, 0.1);
  box-shadow: 0 0 40px rgba(155, 241, 255, 0.2);
  z-index: 0;
}

.idcard::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: 50%;
  height: 60%;
  background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(244, 244, 255, 0.07) 21px,
      rgba(244, 244, 255, 0.07) 25px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(244, 244, 255, 0.07) 41px,
      rgba(244, 244, 255, 0.07) 45px
    );
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transform: rotate(-45deg);
  white-space: nowrap;
  box-sizing: border-box;
  border: none;
}

.idcard .activated {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65em;
  color: rgba(244, 244, 255, 0.3);
  font-weight: 300;
  user-select: none;
  z-index: 2;
}

.idcard .photo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid #9bf1ff;
  object-fit: cover;
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}

.idcard .info {
  position: relative;
  z-index: 2;
}

.idcard .id {
  font-weight: 600;
  font-size: 1.25em;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted rgba(155, 241, 255, 0.5);
  padding-bottom: 0.2em;
}

.idcard .name {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.idcard .email {
  font-size: 0.85em;
  color: rgba(244, 244, 255, 0.6);
  word-break: break-word;
}
.idcard .watermark-text {
  position: absolute;
  top: 30%;
  left: 5%;
  transform: rotate(-45deg);
  font-size: 1.2em;
  font-weight: 700;
  color: rgba(244, 244, 255, 0.1);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 0.4em;
}
.watermark-text-logo{
  width: 100px;
  height: 100px;
}
.idcard::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(155, 241, 255, 0.1);
  box-shadow: 0 0 40px rgba(155, 241, 255, 0.2);
  z-index: 0;
  transition: transform 0.8s ease;
  transform-origin: center center;
}

.idcard:hover::before {
  transform: scale(1.5) rotate(15deg);
}

/* watermark */
.watermark-top-left {
  position: fixed;
  top: 100px;
  left: 20px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
  user-select: none;
  pointer-events: none;
  transform-origin: left top;
  transform: rotate(90deg);
  white-space: nowrap;
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  z-index: 9999;
}

/* back button fixed left corner */
.back-button,
.bb-second {
  display: none;
}

@media screen and (min-width: 75em) {
  .back-button {
    display: inline-block;
    position: fixed;
    top: 7.1em;
    left: 2em;
    z-index: 15000;
    min-width: 10em;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  .bb-second {
    display: inline-block;
    top: calc(7.1em + 4.5em); 
  }
}



/* content recordings */
.material-box {
  position: relative;
  overflow: hidden;
  background-color: #242943;
  border: 1px solid rgba(212,212,255,0.15);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(33,46,106,0.3);
  padding: 2em 1em 2.8em 1em;
  margin-bottom: 2.5em;
  z-index: 1;
  width: 100%;
}
.material-box::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(155,241,255,0.09);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(155,241,255,0.1);
  z-index: 0;
  animation: pulse 7s infinite cubic-bezier(.4,0,.6,1);
}
@keyframes pulse {
  0%,100% { transform: scale(1) rotate(0deg);}
  50% { transform: scale(1.15) rotate(23deg);}
}
.watermark-text {
  position: absolute;
  top: 60px;
  left: 26px;
  font-size: 2em;
  font-weight: 700;
  color: rgba(244,244,255,0.07);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.42em;
  z-index: 0;
  transform: rotate(-17deg);
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
}
.material-box-content {
  position: relative;
  z-index: 2;
}
.material-title {
  margin-top: 1.3em;
  margin-bottom: 0.35em;
  font-size: 2em;
  font-weight: 600;
  color: #fff;
}
.material-course {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(155,241,255,0.7);
  margin-bottom: 1em;
  letter-spacing: 0.13em;
}
.material-desc {
  font-size: 1.04em;
  color: #ebebff;
  margin-bottom: 1.1em;
  line-height: 1.55;
}
.material-more-content-ontopic-li{
  margin-left: 20px;
}
.material-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 0.95em;
  color: rgba(244,244,255,0.7);
  margin-bottom: 1.3em;
}
.material-info-row div {
  min-width: 110px;
}
.material-actions {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1.1em;
  margin-bottom: 0.7em;
}
.material-code {
  margin-top: 1em;
  font-size: 0.88em;
  font-weight: 400;
  color: rgba(155,241,255,0.24);
  text-align: right;
  letter-spacing: 0.16em;
}
.material-back {
  min-width: 180px;
  display: inline-block;
  margin-bottom: 1em;
}
.material-copy {
  margin-top: 1em;
  font-size: 0.68em;
  font-weight: 400;
  color: rgba(155,241,255,0.24);
  user-select: none;
  letter-spacing: 0.16em;
  pointer-events: none;
}

#video-player {
  width: 100%;
}

/* Responsywność */
@media screen and (max-width: 900px) {
  .material-title {font-size: 1.5em;}
  .material-box {padding: 1.2em 0.6em 2.3em 0.6em;}
  .material-desc {font-size: 1em;}
  .material-info-row {font-size: 0.91em;}
}
@media screen and (max-width: 600px) {
  .material-title {font-size: 1.1em;}
  .material-info-row,
  .material-actions {
    flex-direction: column;
    gap: 0.6em;
  }
  .material-box {padding: 0.7em 0.3em 2em 0.3em;}
}

/* text selection custom colors */
p::selection, h1::selection, h2::selection, h3::selection, span::selection {
  color: #242943;
  background: #9bf1ff;
}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, span::-moz-selection {
  color: #242943;
  background: #9bf1ff;
}

.box::selection, blockquote::selection, section::selection, button::selection, a::selection {
  color: #2a2f4a;
  background: #e7b788;
}
.box::-moz-selection, blockquote::-moz-selection, section::-moz-selection, button::-moz-selection, a::-moz-selection {
  color: #2a2f4a;
  background: #e7b788;
}


/* contactbox */
.contactbox_container {
  position: relative;
  background-color: #242943;
  border: 1px solid rgba(212,212,255,0.15);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(33,46,106,0.3);
  padding: 2em 2.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
  color: #ebebff;
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  overflow: hidden;
  z-index: 1;
}

.contactbox_container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(155,241,255,0.09);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(155,241,255,0.1);
  animation: pulse 7s infinite cubic-bezier(.4,0,.6,1);
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(23deg); }
}

.contactbox_left {
  flex: 1 1 280px;
  z-index: 2;
}

.contactbox_title {
  font-size: 2.5em;
  font-weight: 700;
  margin: 0 0 0.4em 0;
  color: #ffffff;
}

.contactbox_text {
  font-size: 1em;
  line-height: 1.5;
  max-width: 500px;
  color: #d4d4ff;
}

.contactbox_right {
  flex: 1 1 280px;
  z-index: 2;
  text-align: right;
}

.contactbox_email {
  font-size: 2.25em;
  font-weight: 700;
  color: #9bf1ff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease-in-out;
}

.contactbox_email:hover {
  color: #53e3fb;
}
@media (max-width: 850px) {
  .contactbox_container {
    flex-direction: column;
    padding: 1.75em 1.5em;
  }
  .contactbox_left, .contactbox_right {
    flex: 1 1 100%;
    text-align: center;
  }
  .contactbox_email {
    white-space: normal;
    word-break: break-word;
  }
}


/* partner logos footer */
.partners-footer {
  padding: 20px 0;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; 
  flex-wrap: nowrap;
}

.partner-logo {
  /* filter: brightness(0) invert(1); */
  width: 60px;
  height: auto;
  transition: width 0.3s ease, max-height 0.3s ease;
}


@media (max-width: 768px) {
  .partner-logo {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 30px;
  }
}


/* payments-cart */
.cart-container {
  max-width: 720px;
  margin: 2em auto;
  background: rgba(36, 41, 67, 0.85);
  border: 1px solid rgba(212, 212, 255, 0.1);
  border-radius: 0.4em;
  padding: 2rem;
  color: #ffffff;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 212, 255, 0.15);
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
}

.cart-item-info {
  flex: 1 1 auto;
  min-width: 250px;
}

.cart-package-header {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.3em;
  color: #9bf1ff;
}

.cart-package-price {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0.1em 0 0.2em 0;
  color: #53e3fb;
}

.cart-package-price-note {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0.2em 0 0.5em 0;
  color: rgba(155, 241, 255, 0.6);
}

.cart-package-subtext {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: lowercase;
  color: rgba(155, 241, 255, 0.7);
  margin: 0;
}

.cart-cancel-text {
  cursor: pointer;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(235, 87, 87, 0.75);
  padding-left: 1em;
  border-left: 1px solid rgba(235, 87, 87, 0.3);
  min-width: 70px;
  text-align: center;
  transition: color 0.2s ease;
}

.cart-cancel-text:hover {
  color: #eb5757;
}

.cart-coupon-form {
  display: flex;
  gap: 0.7em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.cart-coupon-form label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  align-self: center;
  min-width: 100px;
  display: block; 
}

.cart-coupon-form input[type="text"] {
  flex-grow: 1;
  background: rgba(212, 212, 255, 0.035);
  border: none;
  color: #ffffff;
  padding: 0.6em 1em;
  outline: none;
  border-radius: 0.3em;
  font-size: 1rem;
  min-width: 200px;
  max-width: 400px;
}


.cart-payment-method {
  margin-bottom: 2em;
}

.cart-payment-method label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.6em;
}

.cart-payment-method select {
  width: 100%;
  padding: 0.55em 1em;
  background: rgba(212, 212, 255, 0.035);
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 0.3em;
  appearance: none;
  outline: none;
  cursor: pointer;
  max-width: 320px;
}

.cart-invoice-form {
  margin-bottom: 2em;
}

.cart-invoice-form .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

.cart-invoice-form .field {
  flex: 1 1 calc(50% - 1.5em);
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.cart-invoice-form label {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.3em;
}

.cart-invoice-form input {
  background: rgba(212, 212, 255, 0.035);
  border: none;
  border-radius: 0.3em;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 1rem;
  outline: none;
}

.cart-summary-box {
  margin-top: 2em;
  color: #ffffff;
  font-weight: 300;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.cart-summary-box p {
  display: flex;
  justify-content: space-between;
  margin: 0.3em 0;
}

.cart-summary-box p.cart-summary-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #9bf1ff;
}

.cart-summary-box p.cart-summary-discount {
  color: rgba(155, 241, 255, 0.7);
  font-style: italic;
}

.cart-summary-box p.cart-summary-final {
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 1em;
}

.cart-summary-button.button.primary {
  width: 100%;
  margin-top: 1.2em;
  padding: 0.75em;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

/* content status toggle oraz container na to */
.status-container {
    display: flex;
    align-items: center;
    gap: 15px; /* odstęp między suwakiem a napisem */
    white-space: nowrap;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  margin-bottom: 0; 
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #A61F2B; 
}

input:focus + .slider {
  box-shadow: 0 0 1px #A61F2B;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.status-label {
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 736px) {
    .status-container {
        gap: 8px;
    }
    .status-label {
        font-size: 0.7em;
    }
}

/* total blur */
.total-blur {
  filter: blur(50px);
  position: relative;
}

.total-blur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(50px);
  z-index: -1;
}

/* profilowe w menu */
/* Stylizacja sekcji profilu w menu */
.user-profile-container {
    padding: 3em 1.5em 1.5em 1.5em;
    text-align: center;
    border-bottom: solid 1px rgba(212, 212, 255, 0.1);
    animation: profileFadeIn 0.8s ease-out; /* Delikatna animacja wejścia */
}

.user-profile-link {
    text-decoration: none;
    border-bottom: 0 !important; /* Usunięcie domyślnego podkreślenia linku */
    display: inline-block;
    transition: transform 0.3s ease;
}

.user-profile-link:hover {
    transform: scale(1.03); /* Subtelne powiększenie po najechaniu */
}

/* Stylizacja zdjęcia profilowego */
.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1em auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 212, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(166, 31, 43, 0);
}

.user-profile-link:hover .user-avatar {
    border-color: #A61F2B; /* Zmiana koloru ramki na akcentowy */
    box-shadow: 0 0 15px rgba(166, 31, 43, 0.4); /* Delikatna poświata */
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stylizacja imienia i nazwiska */
.user-info .user-name {
    display: block;
    color: #ffffff;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase; /* Styl pasujący do reszty menu */
    transition: color 0.3s ease;
}

.user-profile-link:hover .user-name {
    color: #A61F2B; /* Zmiana koloru tekstu na bordowy po najechaniu */
}

/* Animacja pojawiania się */
@keyframes profileFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność dla mniejszych ekranów */
@media screen and (max-width: 736px) {
    .user-profile-container {
        padding: 2em 1em 1em 1em;
    }
    
    .user-avatar {
        width: 65px;
        height: 65px;
    }
}

/* karty oferty */
    .pricing-wrapper {
        margin-bottom: 4em;
        padding: 2em 1em;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 4px;
    }

    .presale-info-bar {
        background: #A61F2B;
        color: #ffffff;
        padding: 12px 20px;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 15px;
        font-size: 0.85em;
        line-height: 1.4;
        box-shadow: 0 4px 15px rgba(166, 31, 43, 0.3);
    }

    @media screen and (max-width: 480px) {
        .presale-info-bar {
            border-radius: 10px;
            width: 100%;
        }
    }

    .pricing-toggle-box {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 5px;
        border-radius: 50px;
        margin-bottom: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 100%;
    }

    .pricing-toggle-box .toggle-btn {
        border: none;
        background: none;
        color: #ffffff;
        padding: 0 25px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
        font-size: 0.85em;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: none !important;
        margin: 2px;
    }

    @media screen and (max-width: 480px) {
        .pricing-toggle-box { border-radius: 10px; width: 100%; }
        .pricing-toggle-box .toggle-btn { width: 100%; border-radius: 5px; }
    }

    .pricing-toggle-box .toggle-btn.active {
        background: #ffffff;
        color: #A61F2B; 
    }

    .pricing-card-col { margin-bottom: 2.5em; }

    .pricing-card {
        background: #242943;
        border: 1px solid rgba(212, 212, 255, 0.1);
        padding: 2.5em 2em;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                    border-color 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        border-color: #A61F2B;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        z-index: 2;
    }

    .pricing-card.featured { border-color: #A61F2B; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

    .package-label { font-size: 1.25em; margin-bottom: 0.3em; }
    .package-subtext { font-size: 0.85em; opacity: 0.7; min-height: 3em; margin-bottom: 1.5em; }
    
    .price-display { display: none; }
    .price-display.active { display: block; }
    .main-price { font-size: 2.3em; font-weight: 700; color: #ffffff; }
    .price-period { font-size: 0.4em; opacity: 0.6; }
    
    .total-price-box { 
        font-size: 0.85em; margin-top: 12px; padding-top: 12px; 
        border-top: 1px solid rgba(255,255,255,0.08); 
    }

    .badge-discount {
        display: inline-block;
        background: #A61F2B;
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.75em;
        font-weight: 700;
        margin-top: 15px;
    }

    .pricing-features { list-style: none; padding: 0; margin: 2em 0; flex-grow: 1; }
    .feature-item {
        display: flex; justify-content: space-between; align-items: center;
        padding: 0.7em 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.9em;
    }
    .feature-item.disabled { opacity: 0.3; }
    .icon-status { font-weight: bold; }
    .is-check { color: #2ecc71; }
    .is-x { color: #e74c3c; }

/* komunikaty */
.dashboard-notifications {
    width: 100%;
    margin-bottom: 2rem; /* Odstęp od "Witaj ponownie" */
    position: relative;
    z-index: 10;
    /* Wykorzystanie istniejącej animacji z dashboardu */
    animation: fadeInUp 0.8s ease-out forwards; 
}

/* Bazowy styl alertu */
.db-alert {
    display: flex;
    align-items: center; /* Wyśrodkowanie pionowe ikonki i tekstu */
    background: rgba(255, 255, 255, 0.05); /* Bardzo delikatne tło */
    border-left: solid 4px; /* Grubsza linia po lewej */
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px; /* Delikatne zaokrąglenie pasujące do inputów */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efekt hover spójny z kartami statystyk */
.db-alert:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.db-alert:last-child {
    margin-bottom: 0;
}

/* Kontener na ikonkę */
.db-alert-icon {
    flex-shrink: 0; /* Ikonka nie może się ścisnąć */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-right: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
}

/* Styl tekstu */
.db-alert-content {
    flex-grow: 1;
    font-size: 0.9rem; /* Nieco mniejszy niż główny, jak w opisach kafli */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.025em;
}

.db-alert-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* --- Warianty Kolorystyczne --- */

/* 1. Wariant INFO (Niebieski - stonowany, pasujący do tła) */
.db-alert-info {
    border-color: #4A6580; /* Kolor z kafli 1 i 7 */
    background: rgba(74, 101, 128, 0.1);
}

.db-alert-info .db-alert-icon {
    color: #ffffff;
    background: rgba(74, 101, 128, 0.3);
}

/* 2. Wariant WARNING (Czerwony - AP Red) */
.db-alert-warning {
    border-color: #A61F2B; /* Główny czerwony kolor Akademii */
    background: rgba(166, 31, 43, 0.1);
}

.db-alert-warning .db-alert-icon {
    color: #ffffff;
    background: rgba(166, 31, 43, 0.4);
}

@media screen and (max-width: 980px) {
    .db-alert {
        padding: 1.25rem;
    }
    .db-alert-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        margin-right: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .dashboard-notifications {
        margin-bottom: 1.5rem;
    }
    
    .db-alert {
        flex-direction: row; 
        align-items: flex-start; 
        padding: 1rem;
    }

    .db-alert-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        margin-right: 1rem;
        margin-top: 0.2rem; 
    }
    
    .db-alert-content {
        font-size: 0.85rem;
    }
}

/* dashboard action cards */
@keyframes meshGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dashboard-actions-container {
    padding: 2rem 0;
    width: 100%;
    background: linear-gradient(-45deg, #242943, #1E2340, #2c3e50, #242943);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.dashboard-actions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
}

.db-action-card {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 241, 255, 0.2);
    border-radius: 15px;
    width: 220px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.db-action-card i {
    font-size: 2.8rem;
    color: #9bf1ff;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 0 15px rgba(155, 241, 255, 0.4);
}

.db-action-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.db-action-card:hover {
    background: rgba(155, 241, 255, 0.1);
    border-color: #9bf1ff;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(155, 241, 255, 0.2);
}

.db-action-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #ffffff;
}

@media screen and (max-width: 736px) {
    .db-action-card {
        width: 160px;
        padding: 1rem;
    }
    .db-action-card i { font-size: 2rem; }
    .db-action-card span { font-size: 0.8rem; }
    .dashboard-actions-grid { gap: 1rem; }
}

/* notif error */
.notification-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.4s ease-out;
}

.notification-badge i {
    font-size: 0.9rem;
}

.notif-deleted {
    border-left: 3px solid #ff5252;
}
.notif-deleted i { color: #ff5252; }

.notif-error {
    border-left: 3px solid #ff5252;
}
.notif-error i { color: #ff5252; }

.notif-edited {
    border-left: 3px solid #9bf1ff;
}
.notif-edited i { color: #9bf1ff; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 480px) {
    .notification-badge {
        width: 100%;
        justify-content: center;
    }
}