/* Kontener modułu udostępniania */
.lshpe-share-container {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    text-align: left;
}

/* Nagłówek modułu */
.lshpe-header {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Przycisk udostępniania */
.lshpe-share-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-bottom: 10px;
}

.lshpe-share-button:hover {
    background-color: #005177;
}

/* Przycisk dla niezalogowanych */
.lshpe-share-button.lshpe-not-logged {
    background-color: #ffba00;
}

.lshpe-share-button.lshpe-not-logged:hover {
    background-color: #e69a00;
}

/* Kontener na wygenerowany link i przycisk kopiowania */
.lshpe-link-wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Pole textarea z wygenerowanym linkiem */
#lshpe-generated-link {
    width: 100%;
    min-height: 70px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
}

/* Przycisk kopiowania linku */
.lshpe-copy-button {
    align-self: flex-start;
    background-color: #0073aa;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lshpe-copy-button:hover {
    background-color: #005177;
}

/* Instrukcje */
.lshpe-instructions {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4em;
}

/* Dodatkowe linki pod modułem udostępniania */
.lshpe-extra-links {
    margin-top: 20px;
}

.lshpe-extra-links p {
    margin: 5px 0;
}

.lshpe-extra-links a {
    font-size: 1rem;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lshpe-extra-links a:hover {
    color: #005177;
}
