/* Style dla przewodnika Tour.js */
.shepherd-theme-custom {
    max-width: 400px;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #fff;
    color: #495057;
}

.shepherd-theme-custom .shepherd-header {
    background-color: #0ab39c;
    padding: 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
}

.shepherd-theme-custom .shepherd-title {
    color: #0ab39c;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.shepherd-theme-custom .shepherd-cancel-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.shepherd-theme-custom .shepherd-cancel-icon:hover {
    color: #f46a6a;
}

.shepherd-theme-custom .shepherd-text {
    padding: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.shepherd-theme-custom .shepherd-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

.shepherd-theme-custom .shepherd-button {
    margin-left: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shepherd-theme-custom .shepherd-button:first-child {
    background-color: #74788d;
    color: #fff;
    border: 1px solid #74788d;
}

.shepherd-theme-custom .shepherd-button:first-child:hover {
    background-color: #636678;
    border-color: #636678;
}

.shepherd-theme-custom .shepherd-button:last-child {
    background-color: #556ee6;
    color: #fff;
    border: 1px solid #556ee6;
}

.shepherd-theme-custom .shepherd-button:last-child:hover {
    background-color: #4458ca;
    border-color: #4458ca;
}

.shepherd-element.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
    opacity: 0.8;
}

.shepherd-element.shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
    opacity: 1;
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible {
    opacity: 0.5;
}

/* Przycisk do uruchomienia przewodnika */
.tour-button {
    position: fixed;
    bottom: 80px; /* Umieszczamy nad przyciskiem powrotu do góry */
    right: 20px;
    background-color: #556ee6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.tour-button:hover {
    background-color: #4458ca;
    transform: scale(1.05);
}

.tour-button i {
    margin: 0;
}

/* Style dla przycisków nawigacyjnych */
.navigation-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
