.share-link-container {
    margin: 10px 0;
    padding: 12px;
    background: #2a2c31;
    border-radius: 8px;
    border: 1px solid #404249;
}

.share-link-container p {
    margin-bottom: 12px;
    font-weight: 600;
    color: #dcddde;
    font-size: 14px;
}

.copy-link {
    display: flex;
    gap: 5px;
    align-items: center;
    background: #36393f;
    border-radius: 4px;
    padding: 4px;
}

.copy-link input {
    flex: 1;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    background: transparent;
    color: #dcddde;
    cursor: text;
    user-select: all;
    font-family: 'Whitney', sans-serif;
    min-width: 0;
    outline: none;
}

.copy-link button {
    padding: 4px 8px;
    background: #5865f2;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    font-size: 12px;
    min-width: 32px;
    height: 24px;
}

.copy-link button:hover {
    background: #4752c4;
}

.copy-link button i {
    font-size: 14px;
}

.copy-link .copied {
    background: #3ba55c;
}

.copy-link .copied:hover {
    background: #359150;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #43b581;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1000;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 20px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}
