/* Smart Events Main Styles */

/* Paslepia elementą */
.hidden {
    display: none !important;
  }
  
  /* Statusai */
  #member-id-status {
    font-size: 12px;
    margin: 5px 0 0 10px;
  }
  
  .status-success {
    color: var(--se-success);
}
  .status-error {
    color: var(--se-danger);
}
  .status-info {
    color: var(--se-text);
}
  
  .w-form-paysera-info {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--se-text-light);
}

/* Toast pranešimų stiliai - naudojame savo toast sistemą */

#registration-success-msg {
  margin: 16px 0;
  font-size: 18px;
  text-align: center;
  background: rgba(29, 187, 180, 0.1);
  border: 1px solid var(--se-primary);
  border-radius: 6px;
  padding: 18px 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--se-shadow);
}

/* Smart Events Add to Calendar Buttons */
.se-add-to-calendar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px 0;
}

.se-calendar-btn {
    background: #4285F4;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 6px #4285f433;
    font-weight: 600;
    min-width: 100px;
    width: 100px;
    justify-content: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    gap: 8px;
}

.se-calendar-btn-google {
    background: #4285F4;
}
.se-calendar-btn-google:hover {
    background: #357ae8;
    box-shadow: 0 2px 12px #4285f466;
    color: #fff !important;
}

.se-calendar-btn-apple {
    background: #333;
    box-shadow: 0 1px 6px #3333;
    color: #fff !important;
}
.se-calendar-btn-apple:hover {
    background: #111;
    box-shadow: 0 2px 12px #3336;
}

.se-calendar-btn-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    margin-left: -4px;
}

@media (max-width: 600px) {
    .se-add-to-calendar {
        flex-direction: column;
        gap: 10px;
    }
    .se-calendar-btn {
        min-width: 90vw;
        width: 100%;
        font-size: 16px;
        padding: 12px 0;
    }
    .se-calendar-btn-icon {
        margin-right: 10px;
    }
}

/* Smart Events stiliai */

/* "Naujiena" labelis meniu */
.w-nav-badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

/* Automatinis "Naujiena" labelis per CSS - modernus badge */
.menu-item-has-badge {
    position: relative;
}

.menu-item-has-badge .w-nav-title::after {
    content: "Naujiena";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
    z-index: 10;
    text-align: center;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        transform: scale(1) translateX(-50%);
    }
    50% {
        transform: scale(1.05) translateX(-50%);
    }
    100% {
        transform: scale(1) translateX(-50%);
    }
}

/* Responsive stiliai */
@media (max-width: 768px) {
    .w-nav-badge,
    .menu-item-has-badge .w-nav-title::after {
        font-size: 8px;
        padding: 2px 4px;
        top: -4px;
    }
}



