/* Generator input styles */
.generator-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: white;
    font-size: 16px;
}

.generator-input:focus {
    outline: none;
    border-color: #666;
}

/* Share notification styles */
.share-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.share-notification.active {
    transform: translateX(-50%) translateY(0);
}
